I have made my java application's jar file and now want to create drag and drop installer for it.Also I want to know that how to create shortcut for Applications folder for the same purpose. how can I do this?

link|improve this question
Are you asking how to style a disk image? There's no such thing as a "drag and drop installer". – deceze Mar 31 '10 at 7:26
yes, I want to create a dmg file for installation.I have tried the Applications > utility > disk utility for this but what next? Thanks. – poonam Mar 31 '10 at 8:01
feedback

3 Answers

Seth Willits' DMG Canvas is a great and easy way to create customized DMGs (with things like an Applications folder shortcut, background image, etc). Yes, you can do this all yourself with hdiutil and whatnot, but I much prefer using a GUI.

link|improve this answer
feedback

Use either Disk Utility or the hdiutil command-line tool. It's easier to integrate hdiutil into an automatic build workflow.

link|improve this answer
feedback

You need to create a small disk image containing your application and a symbolic link to the Applications folder. Use Disk Utility or hdiutil to create the image. You can just copy the application in, and create the symbolic link using Terminal:

cd /Volumes/DiskImageName
ln -s /Applications Applications
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.