好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁 > 知識庫 > Servlet實現文件上傳的三種方法總結

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實現文件上傳的實例,如有疑問請留言或者到本站社區交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

您可能感興趣的文章:
  • Java Servlet簡單實例分享(文件上傳下載demo)
  • SpringMVC + servlet3.0 文件上傳的配置和實現代碼
  • Servlet實現多文件上傳功能
  • Servlet3.0實現文件上傳的方法
  • servlet+jquery實現文件上傳進度條示例代碼
  • Servlet實現文件上傳,可多文件上傳示例
  • java基于servlet使用組件smartUpload實現文件上傳
  • java基于servlet實現文件上傳功能解析
  • servlet+JSP+mysql實現文件上傳的方法
  • Android中發送Http請求(包括文件上傳、servlet接收)的實例代碼

標簽:內江 黃石 銅川 廣州 貸款邀約 大連 南京 樂山

巨人網絡通訊聲明:本文標題《Servlet實現文件上傳的三種方法總結》,本文關鍵詞  Servlet,實現,文件,上傳,的,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《Servlet實現文件上傳的三種方法總結》相關的同類信息!
  • 本頁收集關于Servlet實現文件上傳的三種方法總結的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 亚洲Av天堂久久精品| 武则天一级淫| 国产 国语对白 露脸| 秋霞影院午夜老牛影院| 国产高清在线播放可乐视频| 韩国三级理论在线电影网| www.中文字幕在线| 丝袜国产精品亚洲网红主播| 99re最新地址精品视频| 欧美成人性高清观看| 色之久久综合AV人妻熟女黑寡妇 | 理论论理电影在线观看免费完整版| 2019nv天堂香蕉在线观看| 美女视频黄a视频全免费应用| 日日噜噜夜夜爽爽爽狠狠爱电影| 男男高h双性| Juneliu刘玥FreeHDVideo| 性猛交XXXX乱老妇女69按摩 | 欧美啪啪动态图| www.色鬼7777| 晃动的双乳| 青青干| 91午夜福利伦电影在线观看| ???自慰调教av大师| 欧美精品一区二区三区,| 成 人 a v免费视频在线观看| 日本tickle丨vk| 男人猛躁进女人免费观看视频| 双性大乳的风月艳事(H)| 九九久久国产| 夜夜爽8888| 捏胸狂乳爆乳18禁H漫画入口| 国内免费无码一级毛片| 日本japanese乱子另类| 欧美精品综合| 免费人成视频x8x8在线观看| 清纯校花的被肉日常(NP)》 沈柔| 揉我奶?啊?嗯高潮和尚免费| 91欧美秘密入口| 贵妃双乳被俩人吸着揉| 人人爱人人舔|