Can I inspect java code and determine what runtime it will be able to run on? For instance I want to make sure all applications in our environment are using Sun SE6 and JDK 1.6.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
When you run the "javap -verbose" on any class, you will get a major and a minor version numbers. Following is a mapping between major+minor to an actual java jre version.
If you want to programatically get the class version, you can follow this link: Java API to find out the JDK version a class file is compiled for? |
||||
|
|
|
javap might be what you want:
|
|||||||
|
