我正在开发一些应用程序,我想将它们连接到一个 Restful WebService。为此,我编写了这个类:
public class TagDS {
public TagDS(){
}
public boolean recordTag(Tag t){
try{
String send = t.getConteudo()+"\n"+t.getId()+"\n"+t.getURL()+"\n"+t.getData()+"\n"+t.getUser();
postService(send);
return true;
}catch(Exception e){
return false;
}
}
public void postService(String send) {
ClientConfig config = new DefaultClientConfig();
Client client = Client.create(config);
WebResource service = client.resource(getBaseURI());
service.path("rest").path("project").path("create").path(send).accept(MediaType.TEXT_PLAIN).post();
}
private static URI getBaseURI() {
return UriBuilder.fromUri(
"http://localhost:8080/pt.Android.Project.WebService").build();
}
}
但是当我运行应用程序时,会显示消息:
<p>08-16 10:24:33.280: E/AndroidRuntime(24149): FATAL EXCEPTION: main </p>
<p>08-16 10:24:33.280: E/AndroidRuntime(24149): java.lang.NoClassDefFoundError: com.sun.jersey.api.client.config.DefaultClientConfig</p>
我已将所有库添加到项目中。我的问题是:我们创建 apk 时是否可能没有加载库?
我已经单独测试了我的 WebService,它工作正常。我以为“问题可能是 android 权限”,但我搜索并获得了权限:
<user-permission android:name="android.permission.INTERNET" />
你能帮助我吗?
真诚的,丽塔