Jsp頁面實現檔案上傳下載類代碼第1/2頁

來源:互聯網
上載者:User

剛才和lp看完電影,把jsp頁面抽出class調整了一下。最近總上經典,是感覺既然當了斑竹,就該留下點什麼。lp這幾天也半開玩笑半生氣的說,一回來就上經典,就發帖,你乾脆娶經典作lp得了。想想,這幾天是有點誇張,以後放慢速度了。保持1星期1帖吧,那樣也能多想寫,多總結些。
發帖的初衷就是有時候看到有的朋友問的問題,似乎還沒有走進java的門,希望這樣的文章,能對新手一點協助,也就滿足了。有時候隨意的一段話,其實也是自己的一點經驗,而有時候之所以絮絮叨叨,是想把問題說的清楚明白,讓高手見笑了。因為在入門的時候,每一個小環節都可能鬱悶半天,如果看到我的某段話,有所協助的話,即使我說十句有一句有協助,我也滿足了。因為我在不停的說話。

現在把總結的jsp頁面上傳類發布出來。代碼肯定還會存在問題,有bug的話,告訴我,我及時修正。

名稱:jsp頁面上傳類
作者:SinNeR
Mail:vogoals[at]hotmail.com

特點

  1. 可以多檔案上傳;
  2. 返回上傳後的檔案名稱;
  3. form表單中的其他參數也可以得到。

先貼上傳類,JspFileUpload

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@blueidea.com
* 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 Hasptable();
/** 儲存上傳的檔案的檔案名稱的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);
}
int fIndex = strBuff.toLowerCase().indexOf(
"filename=\"");
if (fIndex != -1) {
fileFlag = true;
int fLastIndex = strBuff.toLowerCase().indexOf(
"\"", fIndex + 10);
fName = strBuff.substring(fIndex + 10, fLastIndex);
fName = getFileName(fName);
if (fName == null || fName.trim().length() == 0) {
fileFlag = false;
sis.readLine(buffs, 0, buffs.length);
sis.readLine(buffs, 0, buffs.length);
sis.readLine(buffs, 0, buffs.length);
continue;
}else{
fName = getFileNameByTime(fName);
sis.readLine(buffs, 0, buffs.length);
sis.readLine(buffs, 0, buffs.length);
}
}
}
} else if (strBuff.startsWith(endBoundary)) {
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);
paramHt.put(name, al);
}
}
} else {
if (fileFlag) {
if (baos == null && bos == null) {
tmpFile = new File(uploadPath + fName);
baos = new FileOutputStream(tmpFile);
bos = new BufferedOutputStream(baos);
}
bos.write(buffs, 0, rtnPos);
baos.flush();
} else {
System.out.println("test :" + value + "--" + strBuff);
value = value + strBuff;
}
}
}
} catch (IOException e) {
status = 4;
}
return status;
}
private int preCheck() {
int errCode = 0;
if ( request == null )
return 1;
if ( uploadPath == null || uploadPath.trim().length() == 0 )
return 2;
else{
File tmpF = new File(uploadPath);
if (!tmpF.exists())
return 2;
}
String contentType = request.getContentType();
if ( contentType.indexOf("multipart/form-data") == -1 )
return 3;
return errCode;
}
public String getParameter(String name){
String value = "";
if ( name == null || name.trim().length() == 0 )
return value;
value = (paramHt.get(name) == null)?"":(String)((ArrayList)paramHt.get(name)).get(0);
return value;
}
public String[] getParameters(String name){
if ( name == null || name.trim().length() == 0 )
return null;
if ( paramHt.get(name) == null )
return null;
ArrayList al = (ArrayList)paramHt.get(name);
String[] strArr = new String[al.size()];
for ( int i=0;i<al.size();i++ )
strArr[i] = (String)al.get(i);
return strArr;
}

public int getUpdFileSize(){
return updFileArr.size();
}

public String[] getUpdFileNames(){
String[] strArr = new String[updFileArr.size()];
for ( int i=0;i<updFileArr.size();i++ )
strArr[i] = (String)updFileArr.get(i);
return strArr;
}
private String getFileName(String input){
int fIndex = input.lastIndexOf("\\");
if (fIndex == -1) {
fIndex = input.lastIndexOf("/");
if (fIndex == -1) {
return input;
}
}
input = input.substring(fIndex + 1);
return input;
}
private String getFileNameByTime(String input){
int index = input.indexOf(".");
Date dt = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmssSSS");
return input.substring(0,index) + sdf.format(dt) + input.substring(index);
}
}

說明

這個類基本解決了上一貼的上一貼說的存在的bug和不足。主要做了如下修正。

  1. 使用者可以設定檔案上傳的路徑,這裡沒有用request對象的getRealPath方法來取得相對路徑,而是用了絕對路徑。是一個小敗筆。因為有時候使用者只是得到伺服器的一個應用,而不知道整個伺服器的路徑。但是既然getRealPath自己可以得到,使用者自己取得也可以。
  2. 在檔案上傳處理的時候,預先進行了check,把一些可能出現的造成上傳失敗的情況拍查掉。避免該類出現不該出現的異常。
  3. 捕獲了IO異常,避免檔案上傳的時候出現異常時程式的不友好表現
  4. 提供了方法返回form表單中其他參數的取得,類比了HttpServletRequest對象的getParameter和getParameters方法(後面這個方法是叫這個名字麼-_-b),取得Parameter的名稱的方法沒有提供,是個小缺陷。
  5. 提供了方法返回上傳的檔案的件數和上傳的檔案名稱,方便使用者作其他動作。

現在介紹下JSP頁面中如何用這個類實現上傳。

首先,要把這個類編譯後的class檔案拷貝到WEB-INF/classes/目錄下。注意保持package的結構。

在jsp頁面中引用這個類

<%@page import="com.vogoal.util.JspFileUpload"%>

<%
//初始化
JspFileUpload jfu = new JspFileUpload();
//設定request對象
jfu.setRequest(request);
//設定上傳的檔案路徑
jfu.setUploadPath("C:\\");
//上傳處理
int rtn = jfu.process();
//取得form中其他input控制項參數的值
String username = jfu.getParameter("username");
//如果對應同一個參數有多個input控制項,返回數組
String[] usernameArr = jfu.getParameters("username");
//取得上傳的檔案的名字
String[] fileArr = jfu.getUpdFileNames();
//取得上傳檔案的個數,這個方法有點雞肋
int fileNumber = jfu.getUpdFileSize();
//下面的是測試輸出的代碼。
// out.println("parameter:" + username);
// out.println("parameter size:" + usernameArr.length);
// out.println("fileArr size:" + fileArr.length);
// if (fileArr.length > 0)
// out.println("fileArr 0:" + fileArr[0]);
%>

使用的時候的注意事項

  1. 一定要設定request對象。
  2. 一定要設定正確的上傳路徑。
  3. 執行完了之後才可以得到其他參數,因為執行了之後這些參數才被分析。

1,2兩點如果沒有做到的話,process方法執行的時候彙報錯。

各個使用者可用的方法及說明

設定requet對象。
public void setRequest(HttpServletRequest request)

設定檔案上傳的路徑。
public void setUploadPath(String path)

檔案上傳處理主程式。
@return int 操作結果 0 檔案操作成功;1 request對象不存在。 2 沒有設定檔案儲存路徑或者檔案儲存路徑不正確;3
沒有設定正確的enctype;4 檔案操作異常。
public int process()

根據name取得form表單中其他傳遞的參數的值(多個的話返回其中一個)
public String getParameter(String name)

根據name取得form表單中其他傳遞的參數的值(返回數組,可有多個)
public String[] getParameters(String name)

取得上傳成功檔案的個數
public int getUpdFileSize()

取得上傳的檔案名稱對應的數組。
public String[] getUpdFileNames()

注意process方法地傳回值,在不是0的情況下操作失敗。

以下提供測試類別以及測試頁面(見附件):

HelloPostFile.html
HelloPostFile.jsp
寫在jsp中的代碼的測試檔案。
HelloPostFileWithClass.html
HelloPostFileWithClass.jsp
抽出class後的測試檔案。
src在
WEB-INF/src/
class在
WEB-INF/classes/

另:
由於這個檔案被我在中文日文系統下編輯過,注釋出現亂碼,所以大部分都刪掉了,見諒。

下載:WEB-INF.zip

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.