1. 程式人生 > >黑馬day15 文件上傳&apche的工具包

黑馬day15 文件上傳&apche的工具包

esp 界面 article 對象 問題 獲取文件 lena -1 setfile

1.肯定要導入apche的jar包

技術分享

2.要使用的類的介紹..

2.1DiskFileItemFactory
public DiskFileItemFactory(int sizeThreshold, java.io.File repository)

public DiskFileItemFactory()
public void setSizeThreshold(int sizeThreshold) --用來設定內存緩沖區的大小,默認是10k
public void setRepository(java.io.File repository) --設定暫時目錄的大小
2.2ServletFileUpload

boolean isMultipartContent(HttpServletRequest request) 推斷上傳表單是否為multipart/form-data類型
List parseRequest(HttpServletRequest request) 解析request對象。並把表單中的每個輸入項包裝成一個fileItem 對象。並返回一個保存了全部FileItem的list集合。
setFileSizeMax(long fileSizeMax) 設置單個上傳文件的最大值
setSizeMax(long sizeMax) 設置上傳文件總量的最大值
setHeaderEncoding(java.lang.String encoding) 設置編碼格式,解決上傳文件名稱亂碼問題
setProgressListener(ProgressListener pListener) 實時監聽文件上傳狀態

2.3FileItem
boolean isFormField() 推斷FileItem是一個文件上傳對象還是普通表單對象

假設是一個普通字段項能夠調用:
String getFieldName() 獲得普通表單對象的name屬性
String getString(String encoding) 獲得普通表單對象的value屬性,能夠用encoding進行編碼設置

假設是一個文件上傳項:
String getName() 獲得上傳文件的文件名稱(有些瀏覽器會攜帶client路徑)
InputStream getInputStream() 獲得上傳文件的輸入流
delete() 在關閉FileItem輸入流後,刪除暫時文件

文件存放應該註意的問題:
1.upload目錄和temp目錄都要放在web-inf目錄下保護起來,防止上傳入侵和訪問其它用戶上傳資源的問題
2.文件名稱要拼接uuid保證唯一
3.文件要分文件夾存儲保證同一文件夾下不要有過多的文件,分文件夾的算法有非常多,介紹了一種依據hash值分文件夾算法

案例:

1.寫一個文件上傳的jsp頁面:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title></title>
	<meta http-equiv=" pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
  </head>
  <body style="text-align: center">
  <h1>文件上傳</h1>
  <div align="center">
    <form action="${pageContext.request.contextPath }/servlet/UploadServlet1" enctype="multipart/form-data" method="post">
    	描寫敘述信息1:<input type="text" name="description1"/><br>
    	描寫敘述信息2:<input type="text" name="description2"/><br>
    	<input type="file" name="file1"/><br>
    	<input type="submit" value="提交"/><br>
    </form>
   </div>
  </body>
</html>
2.要實現文件上傳的servlet類(須要在WEB-INF的文件夾下建立upload和temp文件夾)

package cn.itheima.upload;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.List;
import java.util.UUID;

import javax.servlet.ServletException;
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.disk.DiskFileItemFactory;
import org.apache.commons.fileupload.servlet.ServletFileUpload;

import cn.itheima.utils.IOUtils;

public class UploadServlet1 extends HttpServlet {

	public void doGet(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {
		try {
			// 1.獲取文件上傳的工廠類
			DiskFileItemFactory factory = new DiskFileItemFactory();
			factory.setSizeThreshold(1024 * 100);// 設置內存的緩存,假設緩存滿了就放到暫時目錄中
			factory.setRepository(new File(this.getServletContext()
					.getRealPath("WEB-INF/temp")));// 設置暫時目錄
			// 2.通過工廠類得到文件上傳的核心類
			ServletFileUpload fileUpload = new ServletFileUpload(factory);
			fileUpload.setFileSizeMax(1024 * 1024 * 100);// 設置單個上傳文件的大小
			fileUpload.setSizeMax(1024 * 1024 * 300);// 設置文件的總的大小
			fileUpload.setHeaderEncoding("utf-8");// 解決上傳文件裏文名的亂碼問題
			// 3.檢查提交的表單enctype類型
			if (!fileUpload.isMultipartContent(request)) {
				throw new RuntimeException("請使用正確的表單類型上傳文件");
			}
			// --解析request
			List<FileItem> list = fileUpload.parseRequest(request);
			// --遍歷list
			for (FileItem item : list) {
				if (item.isFormField()) {// 是普通輸入類型
					String fieldName = item.getFieldName();
					String value = item.getString("utf-8");// 解決普通輸入類型的中文亂碼問題
					System.out.println(fieldName + ":" + value);
				} else {// 文件上傳類型
					String filename = item.getName();// 上傳文件的文件名稱
					String uuid = UUID.randomUUID().toString();
					String uuidname = uuid + "_" + filename;// 上傳文件使用uuid之後的文件名稱
					String str = Integer.toHexString(uuidname.hashCode());// 這裏使用hashcode
																			// 進行目錄的創建
					String path = this.getServletContext().getRealPath(
							"WEB-INF/upload");
					for (char c : str.toCharArray()) {
						path += "/" + c;
					}
					new File(path).mkdirs();// 創建目錄
					InputStream in = item.getInputStream();
					OutputStream out = new FileOutputStream(new File(path,
							uuidname));
					IOUtils.In2Out(in, out);
					IOUtils.closeIO(in, out);
					item.delete();// 刪除暫時目錄
				}
			}

		} catch (Exception e) {
			e.printStackTrace();
			throw new RuntimeException();
		}
	}

	public void doPost(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {
		doGet(request, response);
	}

}

3.工具類

package cn.itheima.utils;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

public class IOUtils {
	private IOUtils(){
		
	}
	/**
	 * 讀取流中的數據寫到輸出流中
	 * @param in
	 * @param out
	 * @throws IOException
	 */
	public static void In2Out(InputStream in,OutputStream out) throws IOException{
		int len=0;
		byte b[]=new byte[1024];
		while((len=in.read(b))!=-1){
			out.write(b, 0, len);
		}
	}
	/**
	 * 關閉資源
	 * @param in
	 * @param out
	 */
	public  static void closeIO(InputStream in,OutputStream out){
		if(in!=null){
			try {
				in.close();
			} catch (IOException e) {
				e.printStackTrace();
			}finally{
				in=null;
			}
		}
		if(out!=null){
			try {
				out.close();
			} catch (IOException e) {
				e.printStackTrace();
			}finally{
				out=null;
			}
		}
	}
}


執行界面:

技術分享


當執行完成後能夠在tomcat的WEB-INF的upload文件夾下...看到

技術分享

黑馬day15 文件上傳&amp;apche的工具包