Android 中的 JAR 相互依赖关系

发布于 2024-10-17 13:38:57 字数 272 浏览 1 评论 0原文

我有一个 Android 应用程序,可以在运行时从外部 JAR 读取一些类。我正在使用 PathClassLoader。

我遇到 JAR 中的类依赖于其他 JAR 中的内容的实例化异常。在Android中,我找不到任何方法来为有效的类加载器添加多个源,将类加载器作为子加载器和父加载器链接在一起似乎也不起作用。

我可以将所有类移动到一个 JAR 中进行部署,或者在运行时解压所有类,但是如果我能找到一些更方便、更少“暴力”的方法来解决这个问题,那就更好了。

预先感谢您提供任何信息。

I have an android app that reads some classes from external JARs at runtime. I am using the PathClassLoader.

I'm getting an instantiation exception with classes in JARs that depend on things in other JARs. In Android I can't find any way to add multiple sources for a classloader that works, nor does chaining the classloaders together as child and parent seem to work.

I could move all the classes into one JAR for my deployment, or maybe unpack all the classes at runtime, however it would be far better if I could find some more convenient and less 'brute force' way to solve this.

Thanks in advance for any info.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

生生漫 2024-10-24 13:38:57

考虑到android的dalvik VM与java的VM不同。
检查 这个问题

在 Android 应用程序中,您将所有 jar 放在 /lib/ 中,编译器会负责将它们正确放置在 dex 文件中。

Take into account that android's dalvik VM is not the same as the java one.
Check this question.

In an Android application you place all your jars in /lib/ and the compiler will take care of placing them correctly in the dex file.

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