Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Convert .Jar to .Dmg

Tags:

java

macos

jar

I have a java application with jar file and a lib folder to go with it,and i want to bundle my application along with the lib files and folders into a .DMG file to run on MAC OS x so if anybody has a similar experience please help me out.

Thanks in advance

like image 718
Jinith Avatar asked Dec 09 '10 07:12

Jinith


3 Answers

You put all your files in one folder together. Then you open the Disk Utility (Applications -> Utilities -> Disk Utility) and choose "New Image from folder..."

That's all.

like image 56
Constantin Avatar answered Oct 23 '22 03:10

Constantin


You might want to make a dmg disk image from the makefile/build file:

hdiutil create -srcfolder <directory> <dmg_file_name>.dmg
like image 37
khachik Avatar answered Oct 23 '22 01:10

khachik


You can use the javapackager tool to build the you_app.app application and wrap it into an installer:

mkdir -p package/macosx
cp you_icon_app.icns package/macosx
jdk=$(/usr/libexec/java_home)
$jdk/bin/javapackager -version
$jdk/bin/javapackager -deploy -native dmg \
   -srcfiles you_app.jar -appclass you_app_name -name you_app_name \
   -outdir deploy -outfile you_app_name -v
cp deploy/bundles/you_app_name-1.0.dmg you_app_name-installer.dmg

And done.

like image 39
HCarrasko Avatar answered Oct 23 '22 01:10

HCarrasko