我创建了一个包含Java应用程序和JRE的.app文件夹。我使用app-bundle-maven插件来创建.app文件夹。
我的Java应用程序从ISO映像创建一个.dmg文件,并通过将hdiutil作为子进程启动来完成此操作。
从命令行或IDE运行时没有任何问题,但从.app文件夹启动时失败。
ProcessBuilder抛出一个IOException,找不到/ usr / bin / hdiutil。
我的问题是:.app文件夹是否像沙盒一样? Info.plist文件中是否有能够覆盖沙箱行为的设置?
的Info.plist:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>JavaAppLauncher</string>
<key>CFBundleIconFile</key>
<string>usbboot.icns</string>
<key>CFBundleIdentifier</key>
<string>de.bamamoto.mactools.usbboot.USBBoot</string>
<key>CFBundleDisplayName</key>
<string>USBBoot</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>USBBoot</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0-SNAPSHOT</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>NSHumanReadableCopyright</key>
<string></string>
<key>NSHighResolutionCapable</key>
<true/>
<key>JVMRuntime</key>
<string>JRE</string>
<key>JVMMainClassName</key>
<string>de.bamamoto.mactools.usbboot.USBBoot</string>
<key>JVMClassPaths</key>
<array>
<string>de/bamamoto/webmusic/USBBoot/1.0-SNAPSHOT/USBBoot-1.0-SNAPSHOT.jar</string>
</array>
<key>JVMVersion</key>
<string>1.6+</string>
<key>JVMOptions</key>
<array>
<string>-Dapple.laf.useScreenMenuBar=true</string>
<string>-Xdock:name=USBBoot</string>
<string>-Djava.util.Arrays.useLegacyMergeSort=true</string>
</array>
<key>JVMArguments</key>
<array/>
<key>LauncherWorkingDirectory</key>
<string>$APP_ROOT</string>
</dict>
</plist>
答案 0 :(得分:0)
我找到了解决这个问题的方法。位于JREs lib文件夹中的名为jspawnhelper的文件在复制操作期间丢失了执行标志。使用ProcessBuilder.start()或Runtime.exec()方法调用时需要此文件。
发现未找到可执行文件的IOException是误导性的。 在此文件上设置执行标志后,一切都按预期工作。