Is there a way to change title of the "Save As..." dialog box, and to preselect the type as XML, without giving a filename and without using Swing (JFileChooser)?
Here is the code I'm currently using to send the response:
response.addHeader("Content-Type", "text/xml");
response.addHeader("Content-Disposition", "attachment; filename=\"myxml.xml\"");
PrintWriter pr=response.getWriter();
pr.write(xml);
pr.close();
JFileChooser fc = new JFileChooser(dir); ....– Maxim Shoustin Nov 15 '12 at 12:29