最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

javaweb實(shí)現(xiàn)文件上傳示例代碼

 更新時(shí)間:2017年04月08日 15:55:19   作者:第九種格調(diào)的人生  
這篇文章主要為大家詳細(xì)介紹了javaweb實(shí)現(xiàn)文件上傳的示例代碼,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了javaweb文件下載的具體實(shí)現(xiàn)代碼,供大家參考,具體內(nèi)容如下

文件上傳示例

注意:jsp頁面編碼為"UTF-8"

文件上傳的必要條件

1.form表單,必須為POST方式提交

2.enctype="multipart/form-data"

3.必須有<input type="file" />

前端jsp頁面

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
 <head>
 <base href="<%=basePath%>" rel="external nofollow" >
 
 <title>My JSP 'index.jsp' starting page</title>
 <meta http-equiv="pragma" content="no-cache">
 <meta http-equiv="cache-control" content="no-cache">
 <meta http-equiv="expires" content="0"> 
 <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
 <meta http-equiv="description" content="This is my page">
 <!--
 <link rel="stylesheet" type="text/css" href="styles.css" rel="external nofollow" >
 -->
 </head>
 <script type="text/javascript">
  function addFile(){
   var div1=document.getElementById("div1");
   div1.innerHTML+="<div><input type='file' /><input type='button' value='刪除' onclick='deleteFile(this)' /> 
</div>";
  
  }
  function deleteFile(div){
   div.parentNode.parentNode.removeChild(div.parentNode);
  
  }
 </script>
 <body>
  <form action="${pageContext.request.contextPath }/servlet/upLoadServlet" method="post" enctype="multipart/form-data">
  文件的描述:<input type="text" name ="description" />

  <div id="div1">
   <div>
   <input type="file" name ="file" /><input type="button" value="添加" onclick="addFile()" />

   </div>   
  </div> 
   <input type="submit" />
  </form>
 </body>
</html>

實(shí)現(xiàn)文件上傳的servlet

package com.learning.servlet;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;
import java.util.UUID;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.commons.fileupload.FileItem;
import org.apache.commons.fileupload.FileUploadException;
import org.apache.commons.fileupload.disk.DiskFileItemFactory;
import org.apache.commons.fileupload.servlet.ServletFileUpload;
import org.apache.commons.io.FilenameUtils;

/**
 * Servlet implementation class UpLoadServlet
 */
@WebServlet("/servlet/upLoadServlet")
public class UpLoadServlet extends HttpServlet {
 private static final long serialVersionUID = 1L;

 /**
  * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
  */
 protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
  doGet(request, response);
 }

 /**
  * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
  */
 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
   
  
  //文件上傳
  //判斷是否支持文件上傳
  boolean isMultipartContent = ServletFileUpload
    .isMultipartContent(request);
  if (!isMultipartContent) {
   throw new RuntimeException("不支持");
  }
  
  // 創(chuàng)建一個(gè)DiskFileItemfactory工廠類
  DiskFileItemFactory diskFileItemFactory=new DiskFileItemFactory();
  // 創(chuàng)建一個(gè)ServletFileUpload核心對(duì)象
  ServletFileUpload fileUpload=new ServletFileUpload(diskFileItemFactory);
  //設(shè)置中文亂碼
  fileUpload.setHeaderEncoding("UTF-8");
  //設(shè)置一個(gè)文件大小
  fileUpload.setFileSizeMax(1024*1024*3); //大小為3M
  //設(shè)置總文件大小
  //fileUpload.setSizeMax(1024*1024*10);//大小為10M
  
  try {
   //fileload解析request請(qǐng)求,返回list<FileItem>集合
   List<FileItem> fileItems = fileUpload.parseRequest(request);
   for (FileItem fileItem : fileItems) {
    if (fileItem.isFormField()) {
     //是文本域 (處理文本域的函數(shù))
     processFormField(fileItem);
    }else {
     //文件域 (處理文件域的函數(shù))
     processUpLoadField1(fileItem);
    }
   }
   
  } catch (FileUploadException e) {
   e.printStackTrace();
  }
  
  
 }

 /**
  * @param fileItem
  * 
  */
 private void processUpLoadField1(FileItem fileItem) {
  
  try {
   //獲得文件讀取流
   InputStream inputStream = fileItem.getInputStream();
   
   //獲得文件名
   String fileName = fileItem.getName();
   
   //對(duì)文件名處理
   if (fileName!=null) {
    fileName.substring(fileName.lastIndexOf(File.separator)+1);
    
   }else {
    throw new RuntimeException("文件名不存在");
   }
   
   //對(duì)文件名重復(fù)處理
//   fileName=new String(fileName.getBytes("ISO-8859-1"),"UTF-8");
   fileName=UUID.randomUUID()+"_"+fileName;
   
   //日期分類
   SimpleDateFormat simpleDateFormat=new SimpleDateFormat("yyyy-MM-dd");
   String date = simpleDateFormat.format(new Date());
   //創(chuàng)建目錄
   File parent=new File(this.getServletContext().getRealPath("/WEB-INF/upload/"+date));
   if (!parent.exists()) {
    parent.mkdirs();
   }
   
   //上傳文件
   fileItem.write(new File(parent, fileName));
   //刪除臨時(shí)文件(如果上傳文件過大,會(huì)產(chǎn)生.tmp的臨時(shí)文件)
   fileItem.delete();
   
  } catch (IOException e) {
   System.out.println("上傳失敗");
   e.printStackTrace();
  } catch (Exception e) {
   
  }
  
  
  
 }

 /**
  * @param fileItem
  */
 //文件域
 private void processUpLoadField(FileItem fileItem) {
   
  try {
   //獲得文件輸入流
   InputStream inputStream = fileItem.getInputStream();
   
   //獲得是文件名字
   String filename = fileItem.getName();
   //對(duì)文件名字處理
   if (filename!=null) {
//    filename.substring(filename.lastIndexOf(File.separator)+1);
    filename = FilenameUtils.getName(filename);
   }
   
   //獲得路徑,創(chuàng)建目錄來存放文件
   String realPath = this.getServletContext().getRealPath("/WEB-INF/load");
   
   File storeDirectory=new File(realPath);//既代表文件又代表目錄
   //創(chuàng)建指定目錄
   if (!storeDirectory.exists()) {
    storeDirectory.mkdirs();
   }
   //防止文件名一樣
   filename=UUID.randomUUID()+"_"+filename;
   //目錄打散 防止同一目錄文件下文件太多,不好查找
   
   //按照日期分類存放上傳的文件
   //storeDirectory = makeChildDirectory(storeDirectory);
   
   //多級(jí)目錄存放上傳的文件
   storeDirectory = makeChildDirectory(storeDirectory,filename);
   
   FileOutputStream fileOutputStream=new FileOutputStream(new File(storeDirectory, filename));
   //讀取文件,輸出到指定的目錄中
   int len=1;
   byte[] b=new byte[1024];
   while((len=inputStream.read(b))!=-1){
    fileOutputStream.write(b, 0, len);
   }
   //關(guān)閉流
   fileOutputStream.close();
   inputStream.close(); 
   
  } catch (IOException e) {
   e.printStackTrace();
  } 
 }
 //按照日期來分類
 private File makeChildDirectory(File storeDirectory) {
  SimpleDateFormat simpleDateFormat=new SimpleDateFormat("yyyy-MM-dd");
  String date = simpleDateFormat.format(new Date());
  //創(chuàng)建目錄
  File childDirectory=new File(storeDirectory, date);
  if (!childDirectory.exists()) {
   childDirectory.mkdirs();
  }
  return childDirectory;
 } 
 //多級(jí)目錄
 private File makeChildDirectory(File storeDirectory, String filename) {
  filename=filename.replaceAll("-", ""); 
  File childDirectory =new File(storeDirectory, filename.charAt(0)+File.separator+filename.charAt(1));
  if (!childDirectory.exists()) {
   childDirectory.mkdirs();  
  }
  return childDirectory;
 }
 //文本域
 private void processFormField(FileItem fileItem) {
  //對(duì)于文本域的中文亂碼,可以用new String()方式解決
   try {
    String fieldName = fileItem.getFieldName();//表單中字段名name,如description
    String fieldValue = fileItem.getString("UTF-8");//description中value
//    fieldValue=new String(fieldValue.getBytes("ISO-8859-1"),"UTF-8");
    System.out.println(fieldName +":"+fieldValue);
   } catch (UnsupportedEncodingException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
   }
   
 }

}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • 詳解Spring中的@PropertySource注解使用

    詳解Spring中的@PropertySource注解使用

    這篇文章主要介紹了Spring的@PropertySource注解使用,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2021-08-08
  • Java使用poi包讀取Excel文檔代碼分享

    Java使用poi包讀取Excel文檔代碼分享

    這篇文章主要介紹了Java使用poi包讀取Excel文檔代碼分享,具有一定借鑒價(jià)值,需要的朋友可以參考下。
    2017-12-12
  • Spring?Security登錄表單配置示例詳解

    Spring?Security登錄表單配置示例詳解

    這篇文章主要介紹了Spring?Security登錄表單配置,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2022-06-06
  • SpringBoot連接PostgreSQL+MybatisPlus入門案例(代碼詳解)

    SpringBoot連接PostgreSQL+MybatisPlus入門案例(代碼詳解)

    這篇文章主要介紹了SpringBoot連接PostgreSQL+MybatisPlus入門案例,本文通過實(shí)例代碼圖文相結(jié)合給大家介紹的非常詳細(xì),感興趣的朋友跟隨小編一起看看吧
    2024-07-07
  • JDK10中的局部變量類型推斷var

    JDK10中的局部變量類型推斷var

    這篇文章主要介紹了JDK10中的局部變量類型推斷var,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2020-09-09
  • Java 正則表達(dá)式詳細(xì)介紹

    Java 正則表達(dá)式詳細(xì)介紹

    本文主要介紹 Java 正則表達(dá)式的內(nèi)容,這里整理了Java 正則表達(dá)式的相關(guān)資料,并詳細(xì)介紹,附有代碼示例,有興趣的小伙伴可以參考下
    2016-09-09
  • springmvc下實(shí)現(xiàn)登錄驗(yàn)證碼功能示例

    springmvc下實(shí)現(xiàn)登錄驗(yàn)證碼功能示例

    本篇文章主要介紹了springmvc下實(shí)現(xiàn)登錄驗(yàn)證碼功能示例,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧
    2017-02-02
  • Java TreeMap升序|降序排列和按照value進(jìn)行排序的案例

    Java TreeMap升序|降序排列和按照value進(jìn)行排序的案例

    這篇文章主要介紹了Java TreeMap升序|降序排列和按照value進(jìn)行排序的案例,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧
    2020-10-10
  • Java操作mongodb增刪改查的基本操作實(shí)戰(zhàn)指南

    Java操作mongodb增刪改查的基本操作實(shí)戰(zhàn)指南

    MongoDB是一個(gè)基于分布式文件存儲(chǔ)的數(shù)據(jù)庫,由c++語言編寫,旨在為WEB應(yīng)用提供可擴(kuò)展的高性能數(shù)據(jù)存儲(chǔ)解決方案,下面這篇文章主要給大家介紹了關(guān)于Java操作mongodb增刪改查的基本操作實(shí)戰(zhàn)指南,需要的朋友可以參考下
    2023-05-05
  • java通過客戶端訪問服務(wù)器webservice的方法

    java通過客戶端訪問服務(wù)器webservice的方法

    這篇文章主要介紹了java通過客戶端訪問服務(wù)器webservice的方法,涉及java創(chuàng)建與調(diào)用webservice的相關(guān)技巧,需要的朋友可以參考下
    2016-08-08

最新評(píng)論

乌鲁木齐市| 霍林郭勒市| 军事| 汶川县| 连云港市| 郧西县| 贵南县| 洪洞县| 南漳县| 漳浦县| 分宜县| 乐安县| 南陵县| 无锡市| 南木林县| 当涂县| 天水市| 探索| 黄龙县| 井研县| 沈阳市| 老河口市| 雷州市| 靖江市| 来宾市| 舟山市| 南投县| 兴海县| 承德县| 马龙县| 江源县| 万载县| 丹巴县| 宿迁市| 九江县| 渭源县| 南丹县| 会宁县| 门源| 分宜县| 芦溪县|