• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

how to run 32 bit jar file on 64 bit netbeans window 7 (64 bir operating system)

 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
 
Bartender
Posts: 1166
17
Netbeans IDE Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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.
 
Marshal
Posts: 79179
377
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
And welcome to the Ranch
 
Java Cowboy
Posts: 16084
88
Android Scala IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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++.
 
Sunny Virtualian
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Problem was solved. thank you all for helping and giving advices.
 
reply
    Bookmark Topic Watch Topic
  • New Topic