是的,这很奇怪……不知道为什么会这样,但我有一个简单的 Java Swing 程序,当用户单击按钮时,它会在工作目录中创建一个新目录。
import javax.swing.*;
import java.awt.*;
import java.io.File;
import java.io.IOException;
/**
* Created by jasper on 11/28/15.
*/
public class JarBundlerTest extends JFrame{
public JarBundlerTest(){
setTitle("JarBundler Test");
setLayout(new BorderLayout());
JButton button = new JButton("Create File");
button.addActionListener((ActionListener) -> createFile());
add(button, BorderLayout.CENTER);
pack();
setMinimumSize(getSize());
setLocationRelativeTo(null);
setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
setVisible(true);
}
public void createFile(){
File f = new File("./newfile");
if(f.mkdirs()) {
JOptionPane.showMessageDialog(null, "Created directory " + f.getPath());
}else{
JOptionPane.showMessageDialog(null, "Could not create directory.");
}
}
public static void main(String[] args){
new JarBundlerTest();
}
}
在我的 Mac 上,它在捆绑到 Jar 文件并移动到桌面时可以工作。但是,当我使用appbundler将它捆绑到一个应用程序文件中时,会出现一个显示“无法创建目录”的对话框。我正在使用<option value="-Duser.dir=$APP_ROOT"/>
,它将工作目录放在应用程序包中。它可以省略这一行,但我希望工作目录位于应用程序包中。
但奇怪的是:当我调用 时f.getAbsolutePath()
,它返回正确的文件路径。我知道目录不存在,我有权这样做。为什么没有创建目录?我该如何解决?
这是我的 build.xml:
<?xml version="1.0" encoding="UTF-8"?>
<project name="tempBuildFile" default="bundle-app" basedir="/Users/jasper/Desktop">
<description>Temporary build config for ant script</description>
<taskdef name="bundleapp"
classname="com.oracle.appbundler.AppBundlerTask"
classpath="/Users/jasper/ant/lib/appbundler-1.0.jar" />
<target name="bundle-app">
<bundleapp outputdirectory="/Users/jasper/Desktop"
name="JarBundlerTest"
displayname="JarBundlerTest"
identifier="JarBundlerTest"
shortversion="1.1"
icon="/Users/jasper/Desktop/developer/java/lib/GenericApp.icns"
mainclassname="JarBundlerTest">
<classpath file="/Users/jasper/Desktop/JarBundlerTest.jar"/>
<option value="-Dapple.laf.useScreenMenuBar=true"/>
<option value="-Duser.dir=$APP_ROOT"/>
</bundleapp>
</target>
</project>