检查编译后的class文件的Java编译器版本(jdk版本)

发布于 2024-10-20 17:58:48 字数 282 浏览 2 评论 0原文

可能的重复:
如何检查用于的jdk版本编译.class文件

你好,

我有很多第三方类文件,我想知道。这些类文件是用哪个java版本编译的..

提前致谢 爪哇岛

Possible Duplicate:
how to check the jdk version used to compile a .class file

Hello,

I have lots of third party class files and i would like to know . with which java version, those class files were compiled ..

thanks in advance
javaamtho

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

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

发布评论

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

评论(2

甜心 2024-10-27 17:58:48

您无法真正检查生成类文件的编译器版本。 Java 支持编译到“目标”,该目标可能小于编译器的实际版本。这意味着,如果您在 JDK 1.6 版本中使用标志“-target 1.5”调用 javac,1.6 JDK 将生成 1.5 类文件。

但是,您可以检查该类所需的最低 JRE 版本。它在类中被写为“主要数字”。这个“主编号”占据类文件的第 7 个和第 8 个字节。 查看规范以获取更多详细信息

48、49 和 50 分别对应于 JRE 1.4、1.5 和 1.6。

You can't really check what version of the compiler generated the class file. Java support compiling to a "Target" which might be less than the actual version of the compiler. This means that if you call javac in a JDK 1.6 release with the flag "-target 1.5" the 1.6 JDK will generate 1.5 class files.

However, you can check the mimimum JRE version the class requires. It's written as the "major number" in the class. This "major number" occupies the 7th and 8th byte of a class file. Look to the specification for more details.

48, 49, and 50 correspond to JRE 1.4, 1.5, and 1.6 respectively.

梦回梦里 2024-10-27 17:58:48

在这里看到它有解决方案

see here it having the solution

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