Are there any Java APIs to find out the JDK version a class file is compiled for? Of course there is the javap tool to find out the major version as mentioned in here. However I want to do it programmatically so that that I could warn the user to compile it for the appropriate JDK
feedback
|
The possible values are :
| |||
|
feedback
|
|
This gets you the contents of the class file:
Then look at bytes 5-8 to get the minor and major version. A mapping between those numbers and the JDK releases can be found here. | |||||
feedback
|
|
Apache BCEL provides this API:
| |||||||
feedback
|
|
Just read the class file directly. It's VERY easy to figure out the version. Check out the the spec and wiki and then try the code. Wrapping this code and making is more useful/pretty is left as an exercise. Alternatively, you could use a library like BCEL, ASM, or JavaAssist
| |||
|
feedback
|
|
basszero's approach can be done via the UNIX command line, and the "od(1)" command:
"feca beba" is the magic number. The "0000 3100" is 0x31, which represents J2SE 5.0. | |||
|
feedback
|
|
JavaP does have an API, but it's specific to the Sun JDK. It's found in | |||
|
feedback
|
|
As others have shown, it is easy enough to do by reading the first eight bytes of a class file. If you want a pre-built binary library, you can download one here. | |||
|
feedback
|