Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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(); 
share|improve this question
Hmm, if you use java, you can use AWT API. Or you don't want to use any java GUI? – Maxim Shoustin Nov 15 '12 at 12:14
hi Fess, thanks for the comment I was just wondering is there a way to edit the title of default save as window rather than creating a new one. Can u help me on this – mithunp Nov 15 '12 at 12:19
What do u mean ` rather than creating a new one`? I use JFileChooser fc = new JFileChooser(dir); .... – Maxim Shoustin Nov 15 '12 at 12:29
How are you creating the dialog at the moment, if you're not using Swing? – Gijs Nov 15 '12 at 12:30
@Fess i just want to use the default save as window which pops up normally with a changed title and type 'xml' preselected – mithunp Nov 15 '12 at 12:45
show 4 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.