2
You need to use the method setSelectedFile
JFileChooser jFileChooser = new JFileChooser();
jFileChooser.setSelectedFile(new File("fileToSave.txt"));
jFileChooser.showSaveDialog(parent);
2
1
You need to use the method setSelectedFile
JFileChooser jFileChooser = new JFileChooser();
jFileChooser.setSelectedFile(new File("fileToSave.txt"));
jFileChooser.showSaveDialog(parent);
Browser other questions tagged java
You are not signed in. Login or sign up in order to post.
Managed to solve the problem with the posted answer?
– Diego