是否有可能直接在JFileChooser opendialog中打开预配置目录?
我尝试使用以下代码设置一些目录:
File fn = new File("C://Users//me//Documents//Test");
openFile = new JFileChooser();
openFile.showOpenDialog(f);
openFile.setCurrentDirectory(fn);
fto = openFile.getSelectedFile();
loadFile(openFile.getSelectedFile());
答案 0 :(得分:1)
它可以是这样的:
String startPath = "C://Users//me//Documents//Test";
JFileChooser openFile = new JFileChooser(new File(startPath));
openFile.showOpenDialog(null);
File fileChoosen = openFile.getSelectedFile();
String fileName = openFile.getSelectedFile().getName();
String filePathAndName = openFile.getSelectedFile().getPath();
//Do what you want with the variables...
System.out.println(fileName);
System.out.println(filePathAndName);