Servlet doPost方法同時上傳圖片和傳遞參數

來源:互聯網
上載者:User

標籤:load   ack   field   一個   try   檔案的   屬性   pre   檔案中   

上傳圖片和傳遞參數

上傳圖片和檔案屬於 enctype="multipart/form-data" form中加入enctype="multipart/form-data"時整個表單被封裝,字元將轉成二進位流,因此request.getParameter("user_type")是得不到值的:
預設情況,傳遞參數編碼格式是application/x-www-form-urlencoded,不能用於檔案上傳;只有使用了multipart/form- data,才能完整的傳遞檔案資料,
  同時上傳檔案與圖片
DiskFileItemFactory factory = new DiskFileItemFactory();ServletFileUpload upload = new ServletFileUpload(factory);List items = null;try {     items = upload.parseRequest(request);} catch (FileUploadException e) {e.printStackTrace();} // 解析request請求Iterator iter = items.iterator();while (iter.hasNext()) {    FileItem item = (FileItem) iter.next();if (item.isFormField()) {  // 如果是表單域 ,就是非檔案上傳元素    String name = item.getFieldName(); // 擷取name屬性的值    String value = item.getString(); // 擷取value屬性的值if (item.getFieldName().equals("intro")) {    System.out.println(value+"yeah");}} else {    String fieldName = item.getFieldName(); // 檔案域中name屬性的值    String fileName = item.getName(); // 檔案的全路徑,絕對路徑名加檔案名稱    String contentType = item.getContentType(); // 檔案的類型    long size = item.getSize(); // 檔案的大小,以位元組為單位    File saveFile = new File("D:/test.jpg"); // 定義一個file指向一個具體的檔案try {    item.write(saveFile);// 把上傳的內容寫到一個檔案中  } catch (Exception e) {    e.printStackTrace();  } }}

 

要解析二進位流來得到文本參數

Servlet doPost方法同時上傳圖片和傳遞參數

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.