我有 JBoss 作为应用程序服务器运行,并且在我的 HD 上的某个地方有一个 PDF 文件,当用户单击特定操作时会创建该文件。假设文件在这里:C:/PDF/doonot/10.07.2012/doonot.pdf
. 我怎样才能提供这个文件作为下载?我已经为 CSV 文件做过,但我不知道如何用 PDF 来做。
任何帮助深表感谢。
正如我所写的那样,有没有一种通用的方法可以在 jsp 中下载所有类型的文件?
你可以使用这样的东西:
public HttpServletResponse getFile (HttpServletRequest request ,HttpServletResponse httpServletResponse, .......){
HttpServletResponse response = httpServletResponse;
InputStream in =/*HERE YOU READ YOUR FILE AS BinaryStream*/
String filename = "";
String agent = request.getHeader("USER-AGENT");
if (agent != null && agent.indexOf("MSIE") != -1)
{
filename = URLEncoder.encode(/*THIS IS THE FILENAME SHOWN TO THE USER*/, "UTF8");
response.setContentType("application/x-download");
response.setHeader("Content-Disposition","attachment;filename=" + filename);
}
else if ( agent != null && agent.indexOf("Mozilla") != -1)
{
response.setCharacterEncoding("UTF-8");
filename = MimeUtility.encodeText(/*THIS IS THE FILENAME SHOWN TO THE USER*/, "UTF8", "B");
response.setContentType("application/force-download");
response.addHeader("Content-Disposition", "attachment; filename=\"" + filename + "\"");
}
BufferedOutputStream out = new BufferedOutputStream(response.getOutputStream());
byte by[] = new byte[32768];
int index = in.read(by, 0, 32768);
while (index != -1) {
out.write(by, 0, index);
index = in.read(by, 0, 32768);
}
out.flush();
return response;
}
更新:
不要忘记您可以像这样使用 InputStream:
// read local file into InputStream
InputStream inputStream = new FileInputStream("c:\\SOMEFILE.xml");
或者你甚至可以像这样使用它
//read from database
Blob blob = rs.getBlob(1);
InputStream in = blob.getBinaryStream();
您可以简单地编写一个读取 pdf 的 servlet 并将其写入响应输出流。
此处示例:http ://www.java-forums.org/blogs/servlet/668-how-write-servlet-sends-file-user-download.html
是的,古斯塔夫是对的。Java 不区分文件类型。文件就是文件,如果你是为 csv 做的,它也应该适用于 pdf。