If I have a java class file and I want to know about it's version(major and minor) how to obtain those values ? I used com.ibm.toad.cfparse package. Using the ClassFile class I tried to get the major and minor versions but I get the default values of MajorVersion : 45 , and MinorVersion : 3. I used the ClassFile constructor with InputStream argument. Can someone tell me what am I am I missing here ? Or else please suggest some other technique to get those information. Thanks
Michael Morris
Ranch Hand
Joined: Jan 30, 2002
Posts: 3451
posted
0
Hi Saurav, See if this doesn't work:
Michael Morris
Any intelligent fool can make things bigger, more complex, and more violent. It takes a touch of genius - and a lot of courage - to move in the opposite direction. - Ernst F. Schumacher
Saurav Chetia
Greenhorn
Joined: Oct 28, 2002
Posts: 10
posted
0
Thanks Michael! That was a simple method to obtain information from a class file. I just had doubt related with JVM implementation of JDK versions and the Class file format supported. Got the information from the Sun's JVM Specification. Thanks again -Saurav
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.