Is there a possibility to open a preconfigured directory directly in the JFileChooser opendialog ?
I tried to set some directory with the follow code:
File fn = new File("C://Users//me//Documents//Test");
openFile = new JFileChooser();
openFile.showOpenDialog(f);
openFile.setCurrentDirectory(fn);
fto = openFile.getSelectedFile();
loadFile(openFile.getSelectedFile());