`
burninglouis
  • 浏览: 35469 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论

由response.setContentType()方法开始谈JSP/Servelt上传下载文件

 
阅读更多
[html] view plaincopy
 
  1.  文章非原创,参考链接见文末!  
[html] view plaincopy
 
  1. 常见的MIME类型如下表:  

 

序号

内容类型

文件扩展名

描述

1

application/msword

doc

Microsoft Word

2

application/octet-stream bin

dms lha lzh exe class

可执行程序

3

application/pdf

pdf

Adobe Acrobat

4

application/postscript

ai eps ps

PostScript

5

appication/powerpoint

ppt

Microsoft Powerpoint

6

appication/rtf

rtf

rtf 格式

7

appication/x-compress

z

unix 压缩文件

8

application/x-gzip

gz

gzip

9

application/x-gtar

gtar

tar 文档 (gnu 格式 )

10

application/x-shockwave-flash

swf

MacroMedia Flash

11

application/x-tar

tar

tar(4.3BSD)

12

application/zip

zip

winzip

13

audio/basic

au snd

sun/next 声音文件

14

audio/mpeg

mpeg mp2

Mpeg 声音文件

15

audio/x-aiff

mid midi rmf

Midi 格式

16

audio/x-pn-realaudio

ram ra

Real Audio 声音

17

audio/x-pn-realaudio-plugin

rpm

Real Audio 插件

18

audio/x-wav

wav

Microsoft Windows 声音

19

image/cgm

cgm

计算机图形元文件

20

image/gif

gif

COMPUSERVE GIF 图像

21

image/jpeg

jpeg jpg jpe

JPEG 图像

22

image/png

png

PNG 图像

 

text/html HTML 

text/plain          TXT 

text/xml             XML

text/json           json字符串

   此外不同浏览器下对同一个文件上传后获取到的类型可能不同。

 

1、文件下载:

   文件下载的关键代码在于:

  response.setHeader("Content-disposition", "attachment;filename="
              + "test.rar");
  // set the MIME type.
  response.setContentType("application/x-tar");
  response.setHeader("Content_Length", length);
  即通过设置HttpServletResponse的各个属性来实现。
  
   文件下载有一个最容易犯错的地方是直接通过:<a href="test.txt">Download</a> 来实现,没有这么简单的。如果你是通过类似这样的路径:file:///C:/test/down.html 假设前面这行代码包含在 download.html中,那么你或许可以很顺利地得到,而如果这个html文件(或JSP文件)在Web服务器中比如Tomcat,那么你点击这个将没有反应的。这时查看源代码会发现链接内容变为: http://localhost:8080/file:///c:/test/down.html ,我猜测可能是这样:当<a>标签中指定的href值为相对路径时,Web服务器会默认在这个相对路径前加上服务器根路径。
 
   是不是有点晕?不要紧。其实搞懂这么一个问题就行了。文件下载时,文件是存在Web服务器的某个目录下的,或者说存在服务器的磁盘上的,那么我们可以在Servlet中通过Java的File及相关API访问文件,因为Servlet是在服务器端执行的而如果呈现给客户端的页面中有这么一个链接:
   <a href="c:/test.txt">download it!</a>
   你说能正常获取到服务器C盘的test.txt文件嘛?显然获取不到的。因为现在是在客户端,所以href被Web服务器解析成 http://localhost:8080/file:///c:/test.txt 返回给客户端。
 
   那么该如何实现文件下载?不能直接使用包含盘符的文件路径表示href,但是盘符路径可以用在Servelt中构造File对象,即将文件加载到Web服务器内存中,然后写到响应流中返回给客户端,即实现了。
  
   下面是代码演示:
   主要包含 index.jsp、访问路径为/loadFile的Servelt(名称为LoadFile),至于web.xml配置Servelt省略。
[html] view plaincopy
 
  1. <html>  
  2. <head>  
  3.     <meta http-equiv="Content-Type" content="text/html; charset=GB18030">  
  4.     <title>download page</title>  
  5. </head>  
  6. <body>  
  7.     <a href="loadFile?filename=test.txt&path="+escape("C:/test.txt")>Download It!</a>  
  8. </body>  
  9. </html>  

  LoadFile类如下:
[java] view plaincopy
 
  1. import java.io.File;  
  2. import java.io.FileInputStream;  
  3. import java.io.IOException;  
  4. import java.io.OutputStream;  
  5. import javax.servlet.ServletException;  
  6. import javax.servlet.http.HttpServlet;  
  7. import javax.servlet.http.HttpServletRequest;  
  8. import javax.servlet.http.HttpServletResponse;  
  9.    
  10. public class LoadFile extends HttpServlet {  
  11.     public void doGet(HttpServletRequest request, HttpServletResponse response)  
  12.            throws IOException, ServletException {  
[java] view plaincopy
 
  1. String filename = request.getParameter("filename");  
[java] view plaincopy
 
  1.        String path = request.getParameter("path");  
  2.        OutputStream o = response.getOutputStream();  
  3.        byte b[] = new byte[1024];  
  4.        // the file to download.  
  5.        File fileLoad = new File(path);  
  6.        // the dialogbox of download file.  
  7.        response.setHeader("Content-disposition""attachment;filename="  
  8.               + "test.txt");  
  9.        // set the MIME type.  
  10.        response.setContentType("text/html");  
  11.        // get the file length.  
  12.        long fileLength = fileLoad.length();  
  13.        String length = String.valueOf(fileLength);  
  14.        response.setHeader("Content_Length", length);  
  15.        // download the file.  
  16.        FileInputStream in = new FileInputStream(fileLoad);  
  17.        int n = 0;  
  18.        while ((n = in.read(b)) != -1) {  
  19.            o.write(b, 0, n);  
  20.        }  
  21.     }  
  22.    
  23.     public void doPost(HttpServletRequest request, HttpServletResponse response)  throws IOException, ServletException {  
  24.        doGet(request, response);  
  25.     }  
  26. }  
   即OK了。
 
 
2. 文件上传
   虽然文件上传和下载都能通过开源组件来实现,但如果要自己实现的话还是费一番功夫的。文件上传一般是通过<form>表单结合<input type="file">来实现的。最后在服务端的Servlet中通过requst获取输入流,然后写到服务器磁盘文件中去。虽然原理清楚了,但是是否就可以直接像下面这样写呢?
[java] view plaincopy
 
  1. test.jsp  
  2. <%@page contentType="text/html;charset=GB2312"%>  
  3. <html>  
  4. <body>  
  5.     选择要上传的文件:<br />  
  6.     <form action="accept.jsp" method="post" enctype="multipart/form-data">  
  7.    <input type="file" name="boy" size="38">  
  8.    <br />  
  9.    <input type="hidden" id="tt" name="t" value="1" />  
  10.    <input type="submit" id="gg" name="g" value="提交" />  
  11. </form>  
  12. </body>  
  13. </html>  
[java] view plaincopy
 
  1.   
[java] view plaincopy
 
  1. accept.jsp  
  2. <%@page contentType="text/html;charset=GB2312"%>  
  3. <%@ page import="java.io.*"%>  
  4. <HTML>  
  5. <BODY>  
  6. <%  
  7. //经测试,说明:ServletInputStream类中的readLine(byte[] b, int off, int len)  
  8. //其中参数 byte[] b 起缓冲作用,此方法一次读取一行,但如果 byte[] b 定义的大小,比要读取的一行需占用的空间要小,则  
  9. //该方法只读取 byte[] b 指定的大小;再次读取时会继续接着上次未读完的读取;返回值 :返回实际读取的字节数,当读到文档流的  
  10. //最后时返回-1。  
  11. try{  
  12.    ServletInputStream in=request.getInputStream();  
  13.    File f=new File("c:\\test","a.txt");  
  14.    FileOutputStream o=new FileOutputStream(f);  
  15.   
  16. //如果byte b[]=设置的值太短的话(假如设置为2),那么在 应用的 上传操作时会有影响,具体表现为无法解析文档路径等相关信息  
  17. byte b[]=new byte[2046];  
  18.    int n;  
  19.    int i = 0;  
  20.    while((n=in.readLine(b,0,b.length))!=-1)//ServletInputStream.readLine方法是逐行读取的。当它读完整个文件,返回-1,一般情况下返回读取的字节数  
  21.    {  
  22.       i++;  
  23.       System.out.println("------"+i);  
  24.       o.write(b,0,n);  
  25.    }  
  26.    o.close();  
  27.    in.close();  
  28. }catch(IOException e){  
  29.    e.printStackTrace();  
  30. }  
  31. out.print("文件已经上传");  
  32. %>  
  33. <a href="c:\\test\\a.txt">查看结果</a>  
  34. </body>  
  35. </HTML>  
   我上传一个test.txt文件,其内容为3行 Hello World!。之后打开C:\\test\a.txt,内容如下:
[html] view plaincopy
 
  1. -----------------------------7db2611a404a4  
  2. Content-Disposition: form-data; name="boy"filename="C:\Users\xijiang\Desktop\test.txt"  
  3. Content-Type: text/plain  
  4.   
  5. Hello World!  
  6. Hello World!  
  7. Hello World!  
  8. -----------------------------7db2611a404a4  
  9. Content-Disposition: form-data; name="t"  
  10.   
  11. 1  
  12. -----------------------------7db2611a404a4  
  13. Content-Disposition: form-data; name="g"  
  14.   
  15. 提交  
  16. -----------------------------7db2611a404a4--  
    可以很明显看到内容不是我们预期的只有三行Hello World!,还多了其他的表单属性值。观察这个文件的内容格式,可以大概看出,
[html] view plaincopy
 
  1. -----------------------------7db2611a404a4  
[html] view plaincopy
 
  1. 是字段间隔符。  
[html] view plaincopy
 
  1. <pre name="code" class="html" style="background-color: rgb(255, 255, 255); text-align: -webkit-left; ">-----------------------------7db2611a404a4--</pre>  
  2. <pre></pre>  
  3. <pre name="code" class="html" style="background-color: rgb(255, 255, 255); text-align: -webkit-left; ">  是结束符。</pre><pre name="code" class="html" style="background-color: rgb(255, 255, 255); text-align: -webkit-left; ">  <input type="file">对应的值表示为:</pre><pre name="code" class="html" style="background-color: rgb(255, 255, 255); text-align: -webkit-left; "><pre name="code" class="html" style="background-color: rgb(255, 255, 255); text-align: -webkit-left; ">-----------------------------7db2611a404a4  
  4. Content-Disposition: form-data; name="boy"filename="C:\Users\jxq\Desktop\test.txt"  
  5. Content-Type: text/plain  
  6.   
  7. Hello World!  
  8. Hello World!  
  9. Hello World!</pre><pre name="code" class="html" style="background-color: rgb(255, 255, 255); text-align: -webkit-left; ">   即第一行是 Content-Disposition、name和客户端上传的文件的目录,第二行是上传的文件类型,第三行是空行,接下来是文件内容。</pre><pre name="code" class="html" style="background-color: rgb(255, 255, 255); text-align: -webkit-left; ">   而表单提交的其他属性值则是通过 Content-Disposition: from-dat; name=xx 来表示。</pre><pre name="code" class="html" style="background-color: rgb(255, 255, 255); text-align: -webkit-left; ">   所以为了获取上传的文件的真正内容,我们不能简单地读取从request获得的输入流,必须进一步解析。</pre>  
  10. <pre></pre>  
  11. <pre name="code" class="html" style="background-color: rgb(255, 255, 255); text-align: -webkit-left; "></pre></pre>  
  12. <pre></pre>  
  13. <pre></pre>  
  14. <pre></pre>  

参考链接:

http://blog.csdn.net/kanaka10/article/details/6526630

http://zhangjunhd.blog.51cto.com/113473/19631

分享到:
评论

相关推荐

    将数据导出到Excel

    将数据导出到Excel源代码及方法:response.setContentType("application/vnd.ms-excel");//响应正文的MIME类型,表示Excel response.addHeader("Content-Disposition", "attachment;filename=logininfo.xls"); ...

    java网站开发结合jsp写的上传以及批量上传文件代码

    // 3:设置允许上传文件的大小 .这里是3m su.setMaxFileSize(3 * 1024 * 1024); // 4:初始化,接受页面传递过来的请求 su.initialize(getServletConfig(), request, response); // 5:上传 su....

    Jsp文件上传下载(工具类源码)

    commons-fileupload-1.2.1实现文件上传 需导入commons-fileupload-1.2.1.jar和 commons-io-1.3.2.jar upload2.jsp &lt;%@ page language="java" import="java.util.*" pageEncoding="gb2312"%&gt; &lt;!DOCTYPE ...

    java结合jsp写的上传文件代码

    // 设置上传文件时用于临时存放文件的内存大小,这里是4K.多于的部分将临时存在硬盘 dfif.setRepository(new File(request.getRealPath("/") + "ImagesUploadTemp"));// 设置存放临时文件的目录,web根目录下的...

    网站登录页面代码实例(JSP+Servlet+JavaBean)

    部分代码如下,下载看全部代码: &lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8"&gt; 登陆&lt;/title&gt; &lt;/head&gt; &lt;center&gt;&lt;br&gt; &lt;br&gt; &lt;p&gt;&lt;form action="&lt;%=request.getContextPath ()%&gt;/...

    .jsp和servlet验证码

    response.setContentType("image/jpeg"); // ����ҳ�治���� response.setHeader("Pragma", "No-cache"); response.setHeader("Cache-Control", "no-cache"); response.setDateHeader("Expires", 2000)...

    java通过js上传文件

    简单的利用java与js实现文件上传 package com.fendou.myString; import java.io.File; import java.io.IOException; import java.io.PrintWriter; import java.util.Iterator; import javax.servlet....

    网上书城 购物系统 jsp

    * @param response the response send by the server to the client * @throws ServletException if an error occurred * @throws IOException if an error occurred */ public void doGet...

    网站登录页面实例

    部分代码如下,下载可看查看全部: 1.数据库结构(为简便这边采用access,实际应用中建议采用其他数据库如MySQL,MSSQL等) ============================== uname 用户名 文本型 pword 密码 文本型 初始数据uname ...

    新闻发布系统

    package org.news.servlet.back; import java.io.IOException; import java.io.PrintWriter; import java.sql.SQLException; import java.util.List; import javax.servlet.ServletContext; import javax.servlet....

    Servelt技术做的E家园

    package AiSoft.OwnHome.Servlet; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet....

    Servlet查询数据库案例--Query(java源码)

    * This class demonstrates how JDBC can be used within a servlet. It uses * initialization parameters (which come from the web.xml configuration file) * to create a single JDBC database connection, ...

    医院管理系统.rar

    * @param response the response send by the server to the client * @throws ServletException if an error occurred * @throws IOException if an error occurred */ public void doGet...

    jsp跳转的五种方式

     由于response是jsp页面中的隐含对象,故在jsp页面中可以用response.sendRedirect()直接实现重定位。  注意:  (1) 使用response.sendRedirect时,前面不能有HTML输出  这并不是绝对的,不能有HTML输出其实是...

    简单的servlet增,删,改,查

    // response.sendRedirect("/sshmvc/listUser.jsp"); request.getRequestDispatcher("/listUser.jsp") .forward(request, response); } } import="java.util.*,java.util.*,com.sshmvc.*,...

    访问JSP文件或者Servlet文件时提示下载的解决方法

    charset=gb2312″%&gt; 如果是Servlet文件,查看: 代码如下:response.setContentType(“text/html;charset=gb2312”); 您可能感兴趣的文章:jsp页面中获取servlet请求中的参数的办法详解JavaWeb实现用户登录注册功能...

    jsp网上投票系统myeclipse开发

    * @param response the response send by the server to the client * @throws ServletException if an error occurred * @throws IOException if an error occurred */ public void doPost...

    可以显示中文名称的下载组件

    jspsmartupload.jar组件大家都知道,但是它本身自带的download功能并不支持中文名称的文件,在下载的时候会出现乱码,我自己编写了一个FileDownload类,放到了这个jar包中,这个类用的UTF-8编码方式,所以可以对中文...

    实践考核类课二 选课系统

    response.sendRedirect("choosesuc.jsp");//选课成功页面 } /** * Initialization of the servlet. * * @throws ServletException if an error occurs */ public void init() throws ServletException...

    tomcat环境变量配置

    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"&gt; &lt;display-name&gt;My Web Application&lt;/display-name&gt; A application for test. &lt;/description&gt; &lt;/...

Global site tag (gtag.js) - Google Analytics