How do I set path for this created file? The user should specify the path in his arguments. Currently this code is able to create a file. The user needs to store this file wherever he wants. I am doing this in Netbeans.
File file = new File("Export.xml");
System.out.println(file.getName());
System.out.println(file.getAbsolutePath());
BufferedWriter bw = new BufferedWriter
(new OutputStreamWriter(new FileOutputStream(file)));
JFileChooser. – Andrew Thompson Oct 15 '11 at 4:48