I want to set a default file name as Untitled.txt
in text-box of this JFileChooser
. Can I set this?
Use the following code:
JFileChooser fileChooser = new JFileChooser();
File file = new File("C:/untitled.txt");
fileChooser.setCurrentDirectory(file);
You have to specify the complete path to untitled.txt