Please let me know how to run / invoke .dmg application in Java.
I used below syntax
Runtime.getruntime.exec("sample.dmg")
but it throws an error as "permission denied" with error code 13. Please let me know how to invoke dmg.
|
|
A DMG file is not directly executable. You need to use the Mac OSX open command:
You may need to have the full path to the dmg file but otherwise it seems to work fine for me. Open also let's you specify the application to do the opening so you can do cool things like send this document in the Mail application as an attachment:
I use open from the Mac command like this all of the time. |
||||
|
|
|
You should use The bottom line is use |
|||||||||||||
|