0

I just want to run a .jar app on macOS, but I can not find an emulator. Does anyone know one?

2

2 Answers 2

14

Java is a multi-platform language. There are no emulators, just JVMs. Even Macs have a JVM implementation.

In a command prompt, try:

java -jar <your jar>
0

You do not need an emulator, you can simply use the Java VM for Mac.

Not the answer you're looking for? Browse other questions tagged .