我想Untitled.txt
在 this 的文本框中设置一个默认文件名JFileChooser
。我可以设置这个吗?
问问题
17259 次
2 回答
9
使用以下代码:
JFileChooser fileChooser = new JFileChooser();
File file = new File("C:/untitled.txt");
fileChooser.setCurrentDirectory(file);
您必须指定完整路径untitled.txt
于 2012-11-15T16:00:53.687 回答
4
您必须使用 setSelectedFile 方法并将文件作为参数传递。该文件不必存在。
如果指定了文件的路径,则文件选择器将尝试指向文件目录(如果存在)
JFileChooser fileChooser = new JFileChooser();
fileChooser.setSelectedFile(new File("C:\\file.txt"));
fileChooser.showSaveDialog(null);
于 2014-06-23T12:52:05.047 回答