android KSOAP2 HttpsTransport警告结束方法

android KSOAP2 HttpsTransport警告结束方法,android,warnings,ksoap2,Android,Warnings,Ksoap2,可能重复: 我使用KSOAP2成功地消费了一个web服务,但是eclipse给了我以下警告消息 (org.ksoap2.transport.KeepAliveHttpsTransportSE$1) that doesn't come with an associated EnclosingMethod attribute. This class was probably produced by a compiler that did not target the modern .class f

可能重复:

我使用KSOAP2成功地消费了一个web服务,但是eclipse给了我以下警告消息

(org.ksoap2.transport.KeepAliveHttpsTransportSE$1) that doesn't come with an
associated EnclosingMethod attribute. This class was probably produced by a
compiler that did not target the modern .class file format. The recommended
solution is to recompile the class from source, using an up-to-date compiler
and without specifying any "-target" type options. The consequence of ignoring
this warning is that reflective operations on this class will incorrectly
indicate that it is *not* an inner class.

虽然它不会引起任何问题,但我想找到一种方法让消息消失,让Eclipse开心,有人找到了解决方案吗?

如果你想让Eclipse开心(如你所说),在警告之前使用这些
@SuppressWarnings

首先发布一些代码和您遇到的相应错误/问题,以便ppl能够理解,是的,下次确实需要@Raghu说