JSP上傳檔案類
package com.vogoal.util;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.Hashtable;
import javax.servlet.ServletInputStream;
import javax.servlet.http.HttpServletRequest;
/*
* vogoalAPI 1.0
* Auther SinNeR@
* by vogoal.com
* mail: vogoals@hotmail.com
*/
/**
* JSP上傳檔案類
*
* @author SinNeR
* @version 1.0
*/
public class JspFileUpload {
/** request對象 */
private HttpServletRequest request = null;
/** 上傳檔案的路徑 */
private String uploadPath = null;
/** 每次讀取得位元組的大小 */
private static int BUFSIZE = 1024 * 8;
/** 儲存參數的Hashtable */
private Hashtable paramHt = new Hasp教程table();
/** 儲存上傳的檔案的檔案名稱的ArrayList */
private ArrayList updFileArr = new ArrayList();
/**
* 設定request對象。
*
* @param request
* HttpServletRequest request對象
*/
public void setRequest(HttpServletRequest request) {
this.request = request;
}
/**
* 設定檔案上傳路徑。
*
* @param path
* 使用者指定的檔案的上傳路徑。
*/
public void setUploadPath(String path) {
this.uploadPath = path;
}
/**
* 檔案上傳處理主程式。�������B
*
* @return int 操作結果 0 檔案操作成功;1 request對象不存在。 2 沒有設定檔案儲存路徑或者檔案儲存路徑不正確;3
* 沒有設定正確的enctype;4 檔案操作異常。
*/
public int process() {
int status = 0;
// 檔案上傳前,對request對象,上傳路徑以及enctype進行check。
status = preCheck();
// 出錯的時候返回錯誤碼。
if (status != 0)
return status;
try {
// ��參數或者檔案名稱�u��
String name = null;
// 參數的value
String value = null;
// 讀取的流是否為檔案的標誌位
boolean fileFlag = false;
// 要儲存的檔案。
File tmpFile = null;
// 上傳的檔案的名字
String fName = null;
FileOutputStream baos = null;
BufferedOutputStream bos = null;
// ��儲存參數的Hashtable
paramHt = new Hashtable();
updFileArr = new ArrayList();
int rtnPos = 0;
byte[] buffs = new byte[BUFSIZE * 8];
// �取得ContentType
String contentType = request.getContentType();
int index = contentType.indexOf("boundary=");
String boundary = "--" + contentType.substring(index + 9);
String endBoundary = boundary + "--";
// �從request對象中取得流。
ServletInputStream sis = request.getInputStream();
// 讀取1行
while ((rtnPos = sis.readLine(buffs, 0, buffs.length)) != -1) {
String strBuff = new String(buffs, 0, rtnPos);
// 讀取1行資料�n��
if (strBuff.startsWith(boundary)) {
if (name != null && name.trim().length() > 0) {
if (fileFlag) {
bos.flush();
baos.close();
bos.close();
baos = null;
bos = null;
updFileArr.add(fName);
} else {
Object obj = paramHt.get(name);
ArrayList al = new ArrayList();
if (obj != null) {
al = (ArrayList) obj;
}
al.add(value);
System.out.println(value);
paramHt.put(name, al);
}
}
name = new String();
value = new String();
fileFlag = false;
fName = new String();
rtnPos = sis.readLine(buffs, 0, buffs.length);
if (rtnPos != -1) {
strBuff = new String(buffs, 0, rtnPos);
if (strBuff.toLowerCase().startsWith(
"content-disposition: form-data; ")) {
int nIndex = strBuff.toLowerCase().indexOf(
"name="");
int nLastIndex = strBuff.toLowerCase().indexOf(
""", nIndex + 6);
name = strBuff.substring(nIndex + 6, nLastIndex);
}