首页 > 编程 > JSP > 正文

JSP文件下载功能的4种方法

2024-09-05 00:22:17
字体:
来源:转载
供稿:网友

这篇文章主要介绍了JSP文件下载功能的4种方法,需要的朋友可以参考下

对于网站来说,网站本身常常需要提供一些资源或者资料进行下载,说到下载莫过于最原始的方法就是在网页上提供下载的网址。今天讲述的还有另外的几种实现文件下载的方法,对于哪种方法更好这也是看自己的需求。

1、最直接最简单的,方式是把文件地址直接放到html页面的一个链接中。这样做的缺点是把文件在服务器上的路径暴露了,并且还无法对文件下载进行其它的控制(如权限)。这个就不写示例了。

2、在服务器端把文件转换成输出流,写入到response,以response把文件带到浏览器,由浏览器来提示用户是否愿意保存文件到本地,示例如下:

 

 
  1. <% 
  2. response.setContentType(fileminitype); 
  3. response.setHeader("Location",filename); 
  4. response.setHeader("Cache-Control""max-age=" + cacheTime); 
  5. //filename应该是编码后的(utf-8) 
  6. response.setHeader("Content-Disposition""attachment; filename=" + filename);  
  7. response.setContentLength(filelength); 
  8. OutputStream outputStream = response.getOutputStream(); 
  9. InputStream inputStream = new FileInputStream(filepath); 
  10. byte[] buffer = new byte[1024]; 
  11. int i = -1; 
  12. while ((i = inputStream.read(buffer)) != -1) { 
  13. outputStream.write(buffer, 0, i); 
  14. outputStream.flush(); 
  15. outputStream.close(); 
  16. inputStream.close(); 
  17. outputStream = null
  18. %> 

3、既然是JSP的话,还有一种方式就是用Applet来实现文件的下载。不过客户首先得信任你的这个Applet小程序,由这个程序来接受由servlet发送来的数据流,并写入到本地。

servlet端示例

 

 
  1. public void service(HttpServletRequest req, HttpServletResponse res) 
  2. throws ServletException, IOException { 
  3. res.setContentType(" text/plain "); 
  4. OutputStream outputStream = null
  5. try { 
  6. outputStream = res.getOutputStream(); 
  7. //把文件路径为srcFile的文件写入outputStream中 
  8. popFile(srcFile, outputStream)) ; 
  9. catch (IOException e) { 
  10. e.printStackTrace();  

JApplet端示例

 

 
  1. URLConnection con; 
  2. try { 
  3. //url是被调用的SERVLET的网址 如 *.do  
  4. con = url.openConnection(); 
  5. con.setUseCaches(false); 
  6. con.setDoInput(true); 
  7. con.setDoOutput(true); 
  8. con.setRequestProperty("Content-Type"
  9. "application/octet-stream"); 
  10. InputStream in = con.getInputStream(); 
  11. ProgressMonitorInputStream pmInputStream = new ProgressMonitorInputStream 
  12. (pane, "正在从服务器下载文件内容"in); 
  13. ProgressMonitor pMonitor = pmInputStream.getProgressMonitor(); 
  14. pMonitor.setMillisToDecideToPopup(3); 
  15. pMonitor.setMillisToPopup(3); 
  16. //localfilepath本地路径,localstr文件文件夹,filename本地文件名 
  17. String localfilepath = localstr + filename ; 
  18. //方法saveFilsaveFilee是把输入流pmInputStream写到文件localfilepath中  
  19. if(saveFilsaveFilee(localfilepath,pmInputStream)){ 
  20. openLocalFile(localfilepath); 

4、顺便把JApplet上传文件的代码也贴上来。

JApplet端示例

 

 
  1. URLConnection con; 
  2. try { 
  3. con = url.openConnection(); 
  4. //url是被调用的SERVLET的网址 如 *.do  
  5. con.setUseCaches(false); 
  6. con.setDoInput(true); 
  7. con.setDoOutput(true); 
  8. con.setRequestProperty("Content-Type","application/octet-stream");  
  9. OutputStream out = con.getOutputStream(); 
  10. //localfilepath本地路径,localstr文件文件夹,filename本地文件名 
  11. String localfilepath = localstr + filename; 
  12. //文件getOutputStream是把文件localfilepath写到输出流out中 
  13. getOutputStream(localfilepath,out); 
  14. InputStream in = con.getInputStream(); 
  15. return true
  16. }catch (IOException e) { 
  17. System.out.println("文件上传出错!"); 
  18. e.printStackTrace(); 

servlet端代码示例

 

 
  1. public void service(HttpServletRequest req, HttpServletResponse res) 
  2. throws ServletException, IOException { 
  3. res.setContentType(" text/plain "); 
  4. InputStream inputStream = null
  5. try { 
  6. inputStream = res.getInputStream(); 
  7. //把输入流inputStream保存到文件路径为srcFile的文件中 
  8. writefile(srcFile, inputStream); 
  9. catch (IOException e) { 
  10. e.printStackTrace(); 
  11. // end service 

总结:在文件的传输中是流的形式存在的,在硬盘上是文件的形式存在的。我们要做的只是通过HttpServletRequest和HttpServletResponse,或者是response和request来发送流和读取流。以及把文件转换成流或把流转换成文件的操作。

以上就是JSP文件下载功能的方法,希望有一种方法可以适合你,帮助大家解决JSP文件下载功能的实现问题。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表