I just want to run a .jar app on mac, but I can not find a emulator.Does anyone know one? Thank you.
|
feedback
|
migrated from stackoverflow.com Nov 14 '10 at 12:55
This question came from our site for professional and enthusiast programmers.
|
Java is a multi-platform language. There are no emulators, just JVMs. Even Macs have a JVM implementation. In a command prompt, try:
| |||
|
feedback
|
|
| |||
|
feedback
|
java -jar foo.jarshould work, actually. – Joey Nov 12 '10 at 1:17