简体   繁体   中英

Create executable OSX file on Windows for .jar file

I have created a java program (in Eclipse). I have successfully compiled it to a .jar file which I can run on windows without any problems. I want to give this program to a friend who has a MacOSX. So my aim is to:

  • Create a file which can be run on MacOSX

The twist is that I have to configure it on my Windows computer since I don't have access to a Mac. Any advice would be of great help!

I am not sure what you are referring as "create a file which can be run on macOSX"

If you want to run on any OS you just need a JRE on that particular system without it you cant run. It will provide a runtime environment to run a jar file. Then use below command to run the jar.

java -jar Myjar_file.jar

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM