开发者

how create Save as Dialog box in java?

开发者 https://www.devze.com 2023-02-21 14:30 出处:网络
i had create a web application in which data re开发者_开发百科port should be converted to pdf and excel then it should stored to a specific location. but i am specifying particular so that i will be s

i had create a web application in which data re开发者_开发百科port should be converted to pdf and excel then it should stored to a specific location. but i am specifying particular so that i will be stored automatically. But they want me to provide a save as dialog box to choose location i am confused how to add. i am using jsp as frontend mysql as backend pdf conversion connectivity all are done in servlet.


The response containing the PDF binary stream should have the following header :

Content-Disposition: attachment; filename=theFileName.pdf;

This will tell browsers to treat the PDF as an attachment, and the browser will open a Save As dialog box where the proposed file name is theFileName.pdf. You won't have any possibility to suggest a directory location, though.

0

精彩评论

暂无评论...
验证码 换一张
取 消