如何使用JFileChooser直接打开目录(位置)?

时间:2016-11-05 21:31:27

标签: java directory jfilechooser

是否有可能直接在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());

1 个答案:

答案 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);