我正在编写一个 API 来从我的网络服务中获取数据。我正在使用 jersey 客户端 api 来使用我的 Web 服务。问题是当我运行应用程序时出现此错误:
10-22 19:44:44.959: E/AndroidRuntime(13171): FATAL EXCEPTION: main
10-22 19:44:44.959: E/AndroidRuntime(13171): java.lang.NoClassDefFoundError:com.sun.jersey.api.client.Client
10-22 19:44:44.959: E/AndroidRuntime(13171): at com.ppsjamaica.data.DataManager.getAllUser(DataManager.java:54)
10-22 19:44:44.959: E/AndroidRuntime(13171): at com.ppsjamaica.MainActivity.onCreate(MainActivity.java:18)
10-22 19:44:44.959: E/AndroidRuntime(13171): at android.app.Activity.performCreate(Activity.java:4465)
我不知道问题是什么。这是调用 Client 类的类:
public class DataManager {
public Client client;
public DataManager ()
{
client = Client.create();
}
public List <User> getAllUser ()
{
WebResource webResource = client.resource(URL.URL_USERS_ALL);
ClientResponse response = webResource.accept(MediaType.APPLICATION_JSON).get(ClientResponse.class);
if (response.getStatus () == 200)
{
return response.getEntity (new GenericType<List <User>> (){});
}
else
return null;
}//end getAllUser method
}