如何从 Android 中的依赖 JAR 中读取清单文件?

发布于 2024-09-11 19:32:44 字数 84 浏览 3 评论 0原文

有谁知道如何从 Android 中的自定义依赖 JAR 中读取 MANIFEST.MF 中的值? 我尝试了很多方法,但似乎它们不适用于Android环境。

Does anyone know how to read values from MANIFEST.MF from my custom dependent JAR in Android ?
I`ve tried many ways but it seems that they do not work for Android environment.

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

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

发布评论

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

评论(2

箜明 2024-09-18 19:32:45

这会有所帮助

JarInputStream jarStream = new JarInputStream(stream);
Manifest mf = jarStream.getManifest();

This will help

JarInputStream jarStream = new JarInputStream(stream);
Manifest mf = jarStream.getManifest();
故事和酒 2024-09-18 19:32:45

将自定义依赖 jar 也作为资源包含在您的 apk 文件中,然后您可以以某种方式读取它。
仅作为自定义依赖项,不允许您读取 jar 文件,否则您将得到错误结果。

Include the custom dependent jar also as a resource in your apk file, then you can read it somehow.
As a custom dependency only, you are not allowed to read the jar file, or you will get false results.

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