使用 Eclipse/Android 出现 NoClassDefFoundError

发布于 2024-11-03 02:59:54 字数 431 浏览 1 评论 0原文

我一直在尝试在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陌若浮生 2024-11-10 02:59:54

请将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文