全网整合营销服务商

电脑端+手机端+微信端=数据同步管理

免费咨询热线:400-708-3566

Servlet实现文件上传的三种方法总结

Servlet实现文件上传的三种方法总结

1. 通过getInputStream()取得上传文件。

/** 
 * To change this template, choose Tools | Templates 
 * and open the template in the editor. 
 */ 
package net.individuals.web.servlet; 
 
import java.io.DataInputStream; 
import java.io.FileOutputStream; 
import java.io.IOException; 
import javax.servlet.ServletException; 
import javax.servlet.annotation.WebServlet; 
import javax.servlet.http.HttpServlet; 
import javax.servlet.http.HttpServletRequest; 
import javax.servlet.http.HttpServletResponse; 
 
/** 
 * 
 * @author Barudisshu 
 */ 
@WebServlet(name = "UploadServlet", urlPatterns = {"/UploadServlet"}) 
public class UploadServlet extends HttpServlet { 
 
  /** 
   * Processes requests for both HTTP 
   * <code>GET</code> and 
   * <code>POST</code> methods. 
   * 
   * @param request servlet request 
   * @param response servlet response 
   * @throws ServletException if a servlet-specific error occurs 
   * @throws IOException if an I/O error occurs 
   */ 
  protected void processRequest(HttpServletRequest request, HttpServletResponse response) 
      throws ServletException, IOException { 
    response.setContentType("text/html;charset=UTF-8"); 
    //读取请求Body 
    byte[] body = readBody(request); 
    //取得所有Body内容的字符串表示 
    String textBody = new String(body, "ISO-8859-1"); 
    //取得上传的文件名称 
    String fileName = getFileName(textBody); 
    //取得文件开始与结束位置 
    Position p = getFilePosition(request, textBody); 
    //输出至文件 
    writeTo(fileName, body, p); 
  } 
 
  //构造类 
  class Position { 
 
    int begin; 
    int end; 
 
    public Position(int begin, int end) { 
      this.begin = begin; 
      this.end = end; 
    } 
  } 
 
  private byte[] readBody(HttpServletRequest request) throws IOException { 
    //获取请求文本字节长度 
    int formDataLength = request.getContentLength(); 
    //取得ServletInputStream输入流对象 
    DataInputStream dataStream = new DataInputStream(request.getInputStream()); 
    byte body[] = new byte[formDataLength]; 
    int totalBytes = 0; 
    while (totalBytes < formDataLength) { 
      int bytes = dataStream.read(body, totalBytes, formDataLength); 
      totalBytes += bytes; 
    } 
    return body; 
  } 
 
  private Position getFilePosition(HttpServletRequest request, String textBody) throws IOException { 
    //取得文件区段边界信息 
    String contentType = request.getContentType(); 
    String boundaryText = contentType.substring(contentType.lastIndexOf("=") + 1, contentType.length()); 
    //取得实际上传文件的气势与结束位置 
    int pos = textBody.indexOf("filename=\""); 
    pos = textBody.indexOf("\n", pos) + 1; 
    pos = textBody.indexOf("\n", pos) + 1; 
    pos = textBody.indexOf("\n", pos) + 1; 
    int boundaryLoc = textBody.indexOf(boundaryText, pos) - 4; 
    int begin = ((textBody.substring(0, pos)).getBytes("ISO-8859-1")).length; 
    int end = ((textBody.substring(0, boundaryLoc)).getBytes("ISO-8859-1")).length; 
 
    return new Position(begin, end); 
  } 
 
  private String getFileName(String requestBody) { 
    String fileName = requestBody.substring(requestBody.indexOf("filename=\"") + 10); 
    fileName = fileName.substring(0, fileName.indexOf("\n")); 
    fileName = fileName.substring(fileName.indexOf("\n") + 1, fileName.indexOf("\"")); 
 
    return fileName; 
  } 
 
  private void writeTo(String fileName, byte[] body, Position p) throws IOException { 
    FileOutputStream fileOutputStream = new FileOutputStream("e:/workspace/" + fileName); 
    fileOutputStream.write(body, p.begin, (p.end - p.begin)); 
    fileOutputStream.flush(); 
    fileOutputStream.close(); 
  } 
 
  // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code."> 
  /** 
   * Handles the HTTP 
   * <code>GET</code> method. 
   * 
   * @param request servlet request 
   * @param response servlet response 
   * @throws ServletException if a servlet-specific error occurs 
   * @throws IOException if an I/O error occurs 
   */ 
  @Override 
  protected void doGet(HttpServletRequest request, HttpServletResponse response) 
      throws ServletException, IOException { 
    processRequest(request, response); 
  } 
 
  /** 
   * Handles the HTTP 
   * <code>POST</code> method. 
   * 
   * @param request servlet request 
   * @param response servlet response 
   * @throws ServletException if a servlet-specific error occurs 
   * @throws IOException if an I/O error occurs 
   */ 
  @Override 
  protected void doPost(HttpServletRequest request, HttpServletResponse response) 
      throws ServletException, IOException { 
    processRequest(request, response); 
  } 
 
  /** 
   * Returns a short description of the servlet. 
   * 
   * @return a String containing servlet description 
   */ 
  @Override 
  public String getServletInfo() { 
    return "Short description"; 
  }// </editor-fold> 
} 

 2. 通过getPart()、getParts()取得上传文件。

    body格式:

POST http://www.example.com HTTP/1.1  
Content-Type:multipart/form-data; boundary=----WebKitFormBoundaryrGKCBY7qhFd3TrwA  
 
------WebKitFormBoundaryrGKCBY7qhFd3TrwA  
Content-Disposition: form-data; name="text"  
 
title  
------WebKitFormBoundaryrGKCBY7qhFd3TrwA  
Content-Disposition: form-data; name="file"; filename="chrome.png"  
Content-Type: image/png  
 
PNG ... content of chrome.png ...  
------WebKitFormBoundaryrGKCBY7qhFd3TrwA--  

 

[html] view plain copy
/** 
 * To change this template, choose Tools | Templates 
 * and open the template in the editor. 
 */ 
package net.individuals.web.servlet; 
 
import java.io.FileNotFoundException; 
import java.io.FileOutputStream; 
import java.io.IOException; 
import java.io.InputStream; 
import java.io.OutputStream; 
import javax.servlet.ServletException; 
import javax.servlet.annotation.MultipartConfig; 
import javax.servlet.annotation.WebServlet; 
import javax.servlet.http.HttpServlet; 
import javax.servlet.http.HttpServletRequest; 
import javax.servlet.http.HttpServletResponse; 
import javax.servlet.http.Part; 
 
/** 
 * 
 * @author Barudisshu 
 */ 
@MultipartConfig 
@WebServlet(name = "UploadServlet", urlPatterns = {"/UploadServlet"}) 
public class UploadServlet extends HttpServlet { 
 
  /** 
   * Processes requests for both HTTP 
   * <code>GET</code> and 
   * <code>POST</code> methods. 
   * 
   * @param request servlet request 
   * @param response servlet response 
   * @throws ServletException if a servlet-specific error occurs 
   * @throws IOException if an I/O error occurs 
   */ 
  protected void processRequest(HttpServletRequest request, HttpServletResponse response) 
      throws ServletException, IOException { 
    Part part = request.getPart("photo"); 
    String fileName = getFileName(part); 
    writeTo(fileName, part); 
  } 
 
  //取得上传文件名 
  private String getFileName(Part part) { 
    String header = part.getHeader("Content-Disposition"); 
    String fileName = header.substring(header.indexOf("filename=\"") + 10, header.lastIndexOf("\"")); 
 
    return fileName; 
  } 
 
  //存储文件 
  private void writeTo(String fileName, Part part) throws IOException, FileNotFoundException { 
    InputStream in = part.getInputStream(); 
    OutputStream out = new FileOutputStream("e:/workspace/" + fileName); 
    byte[] buffer = new byte[1024]; 
    int length = -1; 
    while ((length = in.read(buffer)) != -1) { 
      out.write(buffer, 0, length); 
    } 
 
    in.close(); 
    out.close(); 
  } 
 
  // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code."> 
  /** 
   * Handles the HTTP 
   * <code>GET</code> method. 
   * 
   * @param request servlet request 
   * @param response servlet response 
   * @throws ServletException if a servlet-specific error occurs 
   * @throws IOException if an I/O error occurs 
   */ 
  @Override 
  protected void doGet(HttpServletRequest request, HttpServletResponse response) 
      throws ServletException, IOException { 
    processRequest(request, response); 
  } 
 
  /** 
   * Handles the HTTP 
   * <code>POST</code> method. 
   * 
   * @param request servlet request 
   * @param response servlet response 
   * @throws ServletException if a servlet-specific error occurs 
   * @throws IOException if an I/O error occurs 
   */ 
  @Override 
  protected void doPost(HttpServletRequest request, HttpServletResponse response) 
      throws ServletException, IOException { 
    processRequest(request, response); 
  } 
 
  /** 
   * Returns a short description of the servlet. 
   * 
   * @return a String containing servlet description 
   */ 
  @Override 
  public String getServletInfo() { 
    return "Short description"; 
  } 
} 

3、另一种较为简单的方法:采用part的wirte(String fileName)上传,浏览器将产生临时TMP文件

/** 
 * To change this template, choose Tools | Templates 
 * and open the template in the editor. 
 */ 
package net.individuals.web.servlet; 
 
import java.io.IOException; 
import java.io.PrintWriter; 
import javax.servlet.ServletException; 
import javax.servlet.annotation.MultipartConfig; 
import javax.servlet.annotation.WebServlet; 
import javax.servlet.http.HttpServlet; 
import javax.servlet.http.HttpServletRequest; 
import javax.servlet.http.HttpServletResponse; 
import javax.servlet.http.Part; 
 
/** 
 *采用part的wirte(String fileName)上传,浏览器将产生临时TMP文件。 
 * @author Barudisshu 
 */ 
@MultipartConfig(location = "e:/workspace") 
@WebServlet(name = "UploadServlet", urlPatterns = {"/UploadServlet"}) 
public class UploadServlet extends HttpServlet { 
 
  /** 
   * Processes requests for both HTTP 
   * <code>GET</code> and 
   * <code>POST</code> methods. 
   * 
   * @param request servlet request 
   * @param response servlet response 
   * @throws ServletException if a servlet-specific error occurs 
   * @throws IOException if an I/O error occurs 
   */ 
  protected void processRequest(HttpServletRequest request, HttpServletResponse response) 
      throws ServletException, IOException { 
    //处理中文文件名 
    request.setCharacterEncoding("UTF-8"); 
    Part part = request.getPart("photo"); 
    String fileName = getFileName(part); 
    //将文件写入location指定的目录 
    part.write(fileName); 
  } 
 
  private String getFileName(Part part) { 
    String header = part.getHeader("Content-Disposition"); 
    String fileName = header.substring(header.indexOf("filename=\"") + 10, header.lastIndexOf("\"")); 
    return fileName; 
  } 
 
  // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code."> 
  /** 
   * Handles the HTTP 
   * <code>GET</code> method. 
   * 
   * @param request servlet request 
   * @param response servlet response 
   * @throws ServletException if a servlet-specific error occurs 
   * @throws IOException if an I/O error occurs 
   */ 
  @Override 
  protected void doGet(HttpServletRequest request, HttpServletResponse response) 
      throws ServletException, IOException { 
    processRequest(request, response); 
  } 
 
  /** 
   * Handles the HTTP 
   * <code>POST</code> method. 
   * 
   * @param request servlet request 
   * @param response servlet response 
   * @throws ServletException if a servlet-specific error occurs 
   * @throws IOException if an I/O error occurs 
   */ 
  @Override 
  protected void doPost(HttpServletRequest request, HttpServletResponse response) 
      throws ServletException, IOException { 
    processRequest(request, response); 
  } 
 
  /** 
   * Returns a short description of the servlet. 
   * 
   * @return a String containing servlet description 
   */ 
  @Override 
  public String getServletInfo() { 
    return "Short description"; 
  }// </editor-fold> 
} 

以上就是Servlet实现文件上传的实例,如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!


# Servlet  # 文件上传  # 文件上传的实例  # 文件上传详解  # Java Servlet简单实例分享(文件上传下载demo)  # SpringMVC + servlet3.0 文件上传的配置和实现代码  # Servlet实现多文件上传功能  # Servlet3.0实现文件上传的方法  # servlet+jquery实现文件上传进度条示例代码  # Servlet实现文件上传  # 可多文件上传示例  # java基于servlet使用组件smartUpload实现文件上传  # java基于servlet实现文件上传功能解析  # servlet+JSP+mysql实现文件上传的方法  # Android中发送Http请求(包括文件上传、servlet接收)的实例代码  # 上传  # 上传文件  # 如有  # 希望能  # 三种  # 谢谢大家  # 疑问请  # error  # specific  # response  # throws  # processRequest  # setContentType  # void  # occurs  # protected  # request  # HTTP  # lt 


相关文章: 无锡制作网站公司有哪些,无锡优八网络科技有限公司介绍?  如何在阿里云购买域名并搭建网站?  广州顶尖建站服务:企业官网建设与SEO优化一体化方案  高防服务器租用指南:配置选择与快速部署攻略  如何在阿里云虚拟主机上快速搭建个人网站?  如何通过虚拟主机快速完成网站搭建?  如何快速生成橙子建站落地页链接?  定制建站价位费用解析与套餐推荐全攻略  ,在苏州找工作,上哪个网站比较好?  如何彻底删除建站之星生成的Banner?  建站之星安装后如何自定义网站颜色与字体?  详解免费开源的DotNet二维码操作组件ThoughtWorks.QRCode(.NET组件介绍之四)  网站制作公司广州有几家,广州尚艺美发学校网站是多少?  如何用5美元大硬盘VPS安全高效搭建个人网站?  公司网站设计制作厂家,怎么创建自己的一个网站?  购物网站制作公司有哪些,哪个购物网站比较好?  孙琪峥织梦建站教程如何优化数据库安全?  如何选择CMS系统实现快速建站与SEO优化?  保定网站制作方案定制,保定招聘的渠道有哪些?找工作的人一般都去哪里看招聘信息?  网站网页制作电话怎么打,怎样安装和使用钉钉软件免费打电话?  北京制作网站的公司,北京铁路集团官方网站?  官网网站制作腾讯审核要多久,联想路由器newifi官网  开封网站制作公司,网络用语开封是什么意思?  建站之星会员如何解锁更多建站功能?  如何挑选最适合建站的高性能VPS主机?  已有域名和空间如何搭建网站?  香港网站服务器数量如何影响SEO优化效果?  微课制作网站有哪些,微课网怎么进?  电商网站制作价格怎么算,网上拍卖流程以及规则?  寿县云建站:智能SEO优化与多行业模板快速上线指南  简易网站制作视频教程,使用记事本编写一个简单的网页html文件?  沈阳个人网站制作公司,哪个网站能考到沈阳事业编招聘的信息?  如何在腾讯云服务器上快速搭建个人网站?  电视网站制作tvbox接口,云海电视怎样自定义添加电视源?  怀化网站制作公司,怀化新生儿上户网上办理流程?  网站广告牌制作方法,街上的广告牌,横幅,用PS还是其他软件做的?  油猴 教程,油猴搜脚本为什么会网页无法显示?  如何基于云服务器快速搭建网站及云盘系统?  制作农业网站的软件,比较好的农业网站推荐一下?  装修招标网站设计制作流程,装修招标流程?  无锡营销型网站制作公司,无锡网选车牌流程?  制作企业网站建设方案,怎样建设一个公司网站?  网站制作费用多少钱,一个网站的运营,需要哪些费用?  建站主机系统SEO优化与智能配置核心关键词操作指南  兔展官网 在线制作,怎样制作微信请帖?  ,怎么用自己头像做动态表情包?  长沙企业网站制作哪家好,长沙水业集团官方网站?  小型网站制作HTML,*游戏网站怎么搭建?  免费网站制作模板下载,除了易企秀之外还有什么H5平台可以制作H5长页面,最好是免费的?  北京网站制作网页,网站升级改版需要多久? 

您的项目需求

*请认真填写需求信息,我们会在24小时内与您取得联系。