| Author |
how to run 32 bit jar file on 64 bit netbeans window 7 (64 bir operating system)
|
Sunny Virtualian
Greenhorn
Joined: Jul 29, 2012
Posts: 15
|
|
can any one guide me.
I have a jar file which if for 32 bit Java runtime environment, and i have 64 bit window 7, more over i have installed 64 bit netbeans version 7.2 on it.
now i want to run that file or just to see code of that file. please help me
|
 |
Richard Tookey
Ranch Hand
Joined: Aug 27, 2012
Posts: 361
|
|
The class files that are packaged in jar files should not depend on the OS or the platform (that is what makes Java platform neutral). The class files may depend on the version of the JDK being used.
If you are hoping to see the Java source files for the class files then they are not normally included in jar files.
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32599
|
|
And welcome to the Ranch
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12907
|
|
There is no such thing as a "32-bit JAR file". Java code is independent of the underlying platform. It doesn't matter whether you compile your Java source code on a 32-bit or on a 64-bit JDK - you'll get the same byte code out of it.
The 32-bit or 64-bit is only relevant when your program contains native code, not written in Java, but for example in C or C++.
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
Sunny Virtualian
Greenhorn
Joined: Jul 29, 2012
Posts: 15
|
|
|
Problem was solved. thank you all for helping and giving advices.
|
 |
 |
|
|
subject: how to run 32 bit jar file on 64 bit netbeans window 7 (64 bir operating system)
|
|
|