Is it possible to execute a JAR file on any OS (like Windows, Linux, Mac OS X)? I want to build a simple application that I want to run on Linux, Windows, and Mac OS X. Coul
Yes, as long as you don't use any native libraries (JNI) this is how java works. It's platform independent.