03-13 08:10:19.621: E/AndroidRuntime(800): java.lang.NoClassDefFoundError:
com.sun.jersey.api.client.Client
为什么我得到这个例外?虽然我已经添加了罐子。
Add the used libraries in your application manifest:
<uses-library android:name="your library" />
Edit:
btw. make sure that you have added jersey-core to your classpath too, as it is a dependency for com.sun.jersey.api.client.Client.
你应该试试这个:
从项目中删除对 JAR 的所有引用Java project -> properties -> Java build path -> libraries
libs
如果在项目的根目录中不存在一个文件夹,则将Copy
JAR 放入该libs
文件夹中。
如果还没有运行。右键单击您的项目 > Android 工具 > 修复项目属性
clean your project
并运行。它会起作用的
看起来您已将 jar 文件添加到项目中但尚未将它们添加为库,只需按照以下步骤操作,