使用 Eclipse/Android 出现 NoClassDefFoundError
我一直在尝试在我的 Android 应用程序中使用 Thrift 来通过服务器处理 RPC。我将 thrift .jar 文件添加到我的类路径(属性 > Java 构建路径 > 库)。我在编译期间没有遇到任何问题,但在运行时,当使用 jar 中的任何内容时,我会收到 NoClassDefFoundError 。
我还需要做其他事情来告诉 eclipse/android 库所在的位置吗?
干杯!
TSocket transport = null;
try {
transport = new org.apache.thrift.transport.TSocket(sock); <--- OFFENDING CODE
} catch (TTransportException e1) {e1.printStackTrace(); }
I've been trying to use Thrift in my android app to handle RPC's with a server. I add the thrift .jar file to my class path (Properties > Java Build Path > Libraries). I get no problems during compilation but during runtime I get a NoClassDefFoundError when using anything from the jar.
Do I have to do anything else to tell eclipse/android where libraries are located?
Cheers!
TSocket transport = null;
try {
transport = new org.apache.thrift.transport.TSocket(sock); <--- OFFENDING CODE
} catch (TTransportException e1) {e1.printStackTrace(); }
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请将 jar 文件复制到项目中,然后将其添加到构建路径。我认为您是从外部路径添加的,因此它没有添加到 apk 文件中。
Please copy the jar file to project then add it to build path. I think you added from external path so it was not added in apk file.