jfilechooser - 将目录设置为文件中的路径
2022-09-03 12:11:01
我正在尝试通过类似这样的东西(使用commons-io)在JFilechooser中设置目录路径:
String fileContents = IOUtils.toString(new FileInputStream("path.txt"));
File theDirectory = new File(fileContents);
filechooser = new JFileChooser();
fileChooser.setCurrentDirectory(theDirectory);
filechooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
我正在使用getCanonicalPath()来获取路径并写入文件路径.txt
path = file.getCanonicalPath();
我不打算把我所有的代码都放在这里,但我确信程序在path.txt中编写和读取路径。我没有收到任何错误,但每次我运行程序时,它总是在我的文档文件夹中打开JFilechooser。我做错了什么?