上傳下載全攻略jspSmartUpload

jianghe_03發表於2008-04-11
一、安裝篇

  jspsmartupload是由www.jspsmart.com網站開發的一個可免費使用的全功能的檔案上傳下載元件,適於嵌入執行上傳下載操作的jsp檔案中。該元件有以下幾個特點:

1、使用簡單。在jsp檔案中僅僅書寫三五行java程式碼就可以搞定檔案的上傳或下載,方便。

2、能全程控制上傳。利用jspsmartupload元件提供的物件及其操作方法,可以獲得全部上傳檔案的資訊(包括檔名,大小,型別,副檔名,檔案資料等),方便存取。

3、能對上傳的檔案在大小、型別等方面做出限制。如此可以濾掉不符合要求的檔案。

4、下載靈活。僅寫兩行程式碼,就能把web伺服器變成檔案伺服器。不管檔案在web伺服器的目錄下或在其它任何目錄下,都可以利用jspsmartupload進行下載。

5、能將檔案上傳到資料庫中,也能將資料庫中的資料下載下來。這種功能針對的是mysql資料庫,因為不具有通用性,所以本文不準備舉例介紹這種用法。

  jspsmartupload元件可以從www.jspsmart.com網站上自由下載,壓縮包的名字是jspsmartupload.zip。下載後,用winzip或winrar將其解壓到tomcat的webapps目錄下(本文以tomcat伺服器為例進行介紹)。解壓後,將webapps/jspsmartupload目錄下的子目錄web-inf名字改為全大寫的web-inf,這樣一改jspsmartupload類才能使用。因為tomcat對檔名大小寫敏感,它要求web應用程式相關的類所在目錄為web-inf,且必須是大寫。接著重新啟動tomcat,這樣就可以在jsp檔案中使用jspsmartupload元件了。

  注意,按上述方法安裝後,只有webapps/jspsmartupload目錄下的程式可以使用jspsmartupload元件,如果想讓tomcat伺服器的所有web應用程式都能用它,必須做如下工作:

1.進入命令列狀態,將目錄切換到tomcat的webapps/jspsmartupload/web-inf目錄下。

2.執行jar打包命令:jar cvf jspsmartupload.jar com

(也可以開啟資源管理器,切換到當前目錄,用winzip將com目錄下的所有檔案壓縮成jspsmartupload.zip,然後將jspsmartupload.zip換名為jspsmartupload.jar檔案即可。)

3.將jspsmartupload.jar拷貝到tomcat的shared/lib目錄下。

二、相關類說明篇

㈠ file類

  這個類包裝了一個上傳檔案的所有資訊。通過它,可以得到上傳檔案的檔名、檔案大小、副檔名、檔案資料等資訊。

  file類主要提供以下方法:

1、saveas作用:將檔案換名另存。

原型:

public void saveas(java.lang.string destfilepathname)



public void saveas(java.lang.string destfilepathname, int optionsaveas)

其中,destfilepathname是另存的檔名,optionsaveas是另存的選項,該選項有三個值,分別是saveas_physical,saveas_virtual,saveas_auto。saveas_physical表明以作業系統的根目錄為檔案根目錄另存檔案,saveas_virtual表明以web應用程式的根目錄為檔案根目錄另存檔案,saveas_auto則表示讓元件決定,當web應用程式的根目錄存在另存檔案的目錄時,它會選擇saveas_virtual,否則會選擇saveas_physical。

例如,saveas("/upload/sample.zip",saveas_physical)執行後若web伺服器安裝在c盤,則另存的檔名實際是c:\upload\sample.zip。而saveas("/upload/sample.zip",saveas_virtual)執行後若web應用程式的根目錄是webapps/jspsmartupload,則另存的檔名實際是webapps/jspsmartupload/upload/sample.zip。saveas("/upload/sample.zip",saveas_auto)執行時若web應用程式根目錄下存在upload目錄,則其效果同saveas("/upload/sample.zip",saveas_virtual),否則同saveas("/upload/sample.zip",saveas_physical)。

建議:對於web程式的開發來說,最好使用saveas_virtual,以便移植。

2、ismissing

作用:這個方法用於判斷使用者是否選擇了檔案,也即對應的表單項是否有值。選擇了檔案時,它返回false。未選檔案時,它返回true。

原型:public boolean ismissing()

3、getfieldname

作用:取html表單中對應於此上傳檔案的表單項的名字。

原型:public string getfieldname()

4、getfilename

作用:取檔名(不含目錄資訊)

原型:public string getfilename()

5、getfilepathname

作用:取檔案全名(帶目錄)

原型:public string getfilepathname

6、getfileext

作用:取副檔名(字尾)

原型:public string getfileext()

7、getsize

作用:取檔案長度(以位元組計)

原型:public int getsize()

8、getbinarydata

作用:取檔案資料中指定位移處的一個位元組,用於檢測檔案等處理。

原型:public byte getbinarydata(int index)。其中,index表示位移,其值在0到getsize()-1之間。

㈡ files類

  這個類表示所有上傳檔案的集合,通過它可以得到上傳檔案的數目、大小等資訊。有以下方法:

1、getcount

作用:取得上傳檔案的數目。

原型:public int getcount()

2、getfile

作用:取得指定位移處的檔案物件file(這是com.jspsmart.upload.file,不是java.io.file,注意區分)。

原型:public file getfile(int index)。其中,index為指定位移,其值在0到getcount()-1之間。

3、getsize

作用:取得上傳檔案的總長度,可用於限制一次性上傳的資料量大小。

原型:public long getsize()

4、getcollection

作用:將所有上傳檔案物件以collection的形式返回,以便其它應用程式引用,瀏覽上傳檔案資訊。

原型:public collection getcollection()

5、getenumeration

作用:將所有上傳檔案物件以enumeration(列舉)的形式返回,以便其它應用程式瀏覽上傳檔案資訊。

原型:public enumeration getenumeration()

㈢ request類

  這個類的功能等同於jsp內建的物件request。只所以提供這個類,是因為對於檔案上傳表單,通過request物件無法獲得表單項的值,必須通過jspsmartupload元件提供的request物件來獲取。該類提供如下方法:

1、getparameter

作用:獲取指定引數之值。當引數不存在時,返回值為null。

原型:public string getparameter(string name)。其中,name為引數的名字。

2、getparametervalues

作用:當一個引數可以有多個值時,用此方法來取其值。它返回的是一個字串陣列。當引數不存在時,返回值為null。

原型:public string[] getparametervalues(string name)。其中,name為引數的名字。

3、getparameternames

作用:取得request物件中所有引數的名字,用於遍歷所有引數。它返回的是一個列舉型的物件。

原型:public enumeration getparameternames()

㈣ smartupload類這個類完成上傳下載工作。

a.上傳與下載共用的方法:

只有一個:initialize。

作用:執行上傳下載的初始化工作,必須第一個執行。

原型:有多個,主要使用下面這個:
public final void initialize(javax.servlet.jsp.pagecontext pagecontext)

其中,pagecontext為jsp頁面內建物件(頁面上下文)。

b.上傳檔案使用的方法:

1、upload

作用:上傳檔案資料。對於上傳操作,第一步執行initialize方法,第二步就要執行這個方法。

原型:public void upload()

2、save

作用:將全部上傳檔案儲存到指定目錄下,並返回儲存的檔案個數。

原型:public int save(string destpathname)

和public int save(string destpathname,int option)

其中,destpathname為檔案儲存目錄,option為儲存選項,它有三個值,分別是save_physical,save_virtual和save_auto。(同file類的saveas方法的選項之值類似)save_physical指示元件將檔案儲存到以作業系統根目錄為檔案根目錄的目錄下,save_virtual指示元件將檔案儲存到以web應用程式根目錄為檔案根目錄的目錄下,而save_auto則表示由元件自動選擇。

注:save(destpathname)作用等同於save(destpathname,save_auto)。

3、getsize

作用:取上傳檔案資料的總長度

原型:public int getsize()

4、getfiles

作用:取全部上傳檔案,以files物件形式返回,可以利用files類的操作方法來獲得上傳檔案的數目等資訊。

原型:public files getfiles()

5、getrequest

作用:取得request物件,以便由此物件獲得上傳表單引數之值。

原型:public request getrequest()

6、setallowedfileslist

作用:設定允許上傳帶有指定副檔名的檔案,當上傳過程中有檔名不允許時,元件將丟擲異常。

原型:public void setallowedfileslist(string allowedfileslist)

其中,allowedfileslist為允許上傳的副檔名列表,各個副檔名之間以逗號分隔。如果想允許上傳那些沒有副檔名的檔案,可以用兩個逗號表示。例如:setallowedfileslist("doc,txt,,")將允許上傳帶doc和txt副檔名的檔案以及沒有副檔名的檔案。

7、setdeniedfileslist

作用:用於限制上傳那些帶有指定副檔名的檔案。若有副檔名被限制,則上傳時元件將丟擲異常。

原型:public void setdeniedfileslist(string deniedfileslist)

其中,deniedfileslist為禁止上傳的副檔名列表,各個副檔名之間以逗號分隔。如果想禁止上傳那些沒有副檔名的檔案,可以用兩個逗號來表示。例如:setdeniedfileslist("exe,bat,,")將禁止上傳帶exe和bat副檔名的檔案以及沒有副檔名的檔案。

8、setmaxfilesize

作用:設定每個檔案允許上傳的最大長度。

原型:public void setmaxfilesize(long maxfilesize)

其中,maxfilesize為為每個檔案允許上傳的最大長度,當檔案超出此長度時,將不被上傳。

9、settotalmaxfilesize

作用:設定允許上傳的檔案的總長度,用於限制一次性上傳的資料量大小。

原型:public void settotalmaxfilesize(long totalmaxfilesize)

其中,totalmaxfilesize為允許上傳的檔案的總長度。


1、setcontentdisposition

作用:將資料追加到mime檔案頭的content-disposition域。jspsmartupload元件會在返回下載的資訊時自動填寫mime檔案頭的content-disposition域,如果使用者需要新增額外資訊,請用此方法。

原型:public void setcontentdisposition(string contentdisposition)

其中,contentdisposition為要新增的資料。如果contentdisposition為null,則元件將自動新增"attachment;",以表明將下載的檔案作為附件,結果是ie瀏覽器將會提示另存檔案,而不是自動開啟這個檔案(ie瀏覽器一般根據下載的副檔名決定執行什麼操作,副檔名為doc的將用word程式開啟,副檔名為pdf的將用acrobat程式開啟,等等)。

2、downloadfile

作用:下載檔案。

原型:共有以下三個原型可用,第一個最常用,後兩個用於特殊情況下的檔案下載(如更改內容型別,更改另存的檔名)。

① public void downloadfile(string sourcefilepathname)

其中,sourcefilepathname為要下載的檔名(帶目錄的檔案全名)

② public void downloadfile(string sourcefilepathname,string contenttype)

其中,sourcefilepathname為要下載的檔名(帶目錄的檔案全名),contenttype為內容型別(mime格式的檔案型別資訊,可被瀏覽器識別)。

③ public void downloadfile(string sourcefilepathname,string contenttype,string destfilename)

其中,sourcefilepathname為要下載的檔名(帶目錄的檔案全名),contenttype為內容型別(mime格式的檔案型別資訊,可被瀏覽器識別),destfilename為下載後預設的另存檔名。

三、檔案上傳篇

㈠ 表單要求

對於上傳檔案的form表單,有兩個要求:

1、method應用post,即method="post"。

2、增加屬性:enctype="multipart/form-data"

下面是一個用於上傳檔案的form表單的例子:


<form method="post" enctype="multipart/form-data"
action="/jspsmartupload/upload.jsp">
<input type="file" name="myfile">
<input type="submit">
</form>


㈡ 上傳的例子

1、上傳頁面upload.html

本頁面提供表單,讓使用者選擇要上傳的檔案,點選"上傳"按鈕執行上傳操作。

頁面原始碼如下:

<!--
檔名:upload.html
-->
<!doctype html public "-//w3c//dtd html 4.01 transitional//en">
<html>
<head>
<title>檔案上傳</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
</head>

<body>
<p> </p>
<p align="center">上傳檔案選擇</p>
<form method="post" action="jsp/do_upload.jsp"
enctype="multipart/form-data">
<input type="hidden" name="test" value="good">
<table width="75%" border="1" align="center">
<tr>
<td><div align="center">1、
<input type="file" name="file1" size="30">
</div></td>
</tr>
<tr>
<td><div align="center">2、
<input type="file" name="file2" size="30">
</div></td>
</tr>
<tr>
<td><div align="center">3、
<input type="file" name="file3" size="30">
</div></td>
</tr>
<tr>
<td><div align="center">4、
<input type="file" name="file4" size="30">
</div></td>
</tr>
<tr>
<td><div align="center">
<input type="submit" name="submit" value="上傳它!">
</div></td>
</tr>
</table>
</form>
</body>
</html>


2、上傳處理頁面do_upload.jsp

本頁面執行檔案上傳操作。頁面原始碼中詳細介紹了上傳方法的用法,在此不贅述了。

頁面原始碼如下:

<%--
檔名:do_upload.jsp
--%>
<%@ page contenttype="text/html; charset=gb2312" language="java"
import="java.util.*,com.jspsmart.upload.*" errorpage="" %>
<html>
<head>
<title>檔案上傳處理頁面</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
</head>

<body>
<%
// 新建一個smartupload物件
smartupload su = new smartupload();
// 上傳初始化
su.initialize(pagecontext);
// 設定上傳限制
// 1.限制每個上傳檔案的最大長度。
// su.setmaxfilesize(10000);
// 2.限制總上傳資料的長度。
// su.settotalmaxfilesize(20000);
// 3.設定允許上傳的檔案(通過副檔名限制),僅允許doc,txt檔案。
// su.setallowedfileslist("doc,txt");
// 4.設定禁止上傳的檔案(通過副檔名限制),禁止上傳帶有exe,bat,
jsp,htm,html副檔名的檔案和沒有副檔名的檔案。
// su.setdeniedfileslist("exe,bat,jsp,htm,html,,");
// 上傳檔案
su.upload();
// 將上傳檔案全部儲存到指定目錄
int count = su.save("/upload");
out.println(count+"個檔案上傳成功!<br>");

// 利用request物件獲取引數之值
out.println("test="+su.getrequest().getparameter("test")
+"<br><br>");

// 逐一提取上傳檔案資訊,同時可儲存檔案。
for (int i=0;i<su.getfiles().getcount();i++)
{
com.jspsmart.upload.file file = su.getfiles().getfile(i);

// 若檔案不存在則繼續
if (file.ismissing()) continue;

// 顯示當前檔案資訊
out.println("<table border=1>");
out.println("<tr><td>表單項名(fieldname)</td><td>"
+ file.getfieldname() + "</td></tr>");
out.println("<tr><td>檔案長度(size)</td><td>" +
file.getsize() + "</td></tr>");
out.println("<tr><td>檔名(filename)</td><td>"
+ file.getfilename() + "</td></tr>");
out.println("<tr><td>副檔名(fileext)</td><td>"
+ file.getfileext() + "</td></tr>");
out.println("<tr><td>檔案全名(filepathname)</td><td>"
+ file.getfilepathname() + "</td></tr>");
out.println("</table><br>");

// 將檔案另存
// file.saveas("/upload/" + myfile.getfilename());
// 另存到以web應用程式的根目錄為檔案根目錄的目錄下
// file.saveas("/upload/" + myfile.getfilename(),
su.save_virtual);
// 另存到作業系統的根目錄為檔案根目錄的目錄下
// file.saveas("c:\\temp\\" + myfile.getfilename(),
su.save_physical);

}
%>
</body>
</html>


四、檔案下載篇

1、下載連結頁面download.html

頁面原始碼如下:

<!--
檔名:download.html
作 者:縱橫軟體製作中心雨亦奇(zhsoft88@sohu.com)
-->
<!doctype html public "-//w3c//dtd html 4.01 transitional//en">

<html>
<head>
<title>下載</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
</head>
<body>
<a href="jsp/do_download.jsp">點選下載</a>
</body>
</html>


2、下載處理頁面do_download.jsp do_download.jsp展示瞭如何利用jspsmartupload元件來下載檔案,從下面的原始碼中就可以看到,下載何其簡單。

原始碼如下:

<%@ page contenttype="text/html;charset=gb2312"
import="com.jspsmart.upload.*" %><%
// 新建一個smartupload物件
smartupload su = new smartupload();
// 初始化
su.initialize(pagecontext);
// 設定contentdisposition為null以禁止瀏覽器自動開啟檔案,
//保證點選連結後是下載檔案。若不設定,則下載的副檔名為
//doc時,瀏覽器將自動用word開啟它。副檔名為pdf時,
//瀏覽器將用acrobat開啟。
su.setcontentdisposition(null);
// 下載檔案
su.downloadfile("/upload/如何賺取我的第一桶金.doc");
%>


注意,執行下載的頁面,在java指令碼範圍外(即<% ... %>之外),不要包含html程式碼、空格、回車或換行等字元,有的話將不能正確下載。不信的話,可以在上述原始碼中%><%之間加入一個換行符,再下載一下,保證出錯。因為它影響了返回給瀏覽器的資料流,導致解析出錯。

3、如何下載中文檔案

jspsmartupload雖然能下載檔案,但對中文支援不足。若下載的檔名中有漢字,則瀏覽器在提示另存的檔名時,顯示的是一堆亂碼,很掃人興。上面的例子就是這樣。(這個問題也是眾多下載元件所存在的問題,很少有人解決,搜尋不到相關資料,可嘆!)

為了給jspsmartupload元件增加下載中文檔案的支援,我對該元件進行了研究,發現對返回給瀏覽器的另存檔名進行utf-8編碼後,瀏覽器便能正確顯示中文名字了。這是一個令人高興的發現。於是我對jspsmartupload元件的smartupload類做了升級處理,增加了toutf8string這個方法,改動部分原始碼如下:

public void downloadfile(string s, string s1, string s2, int i)
throws servletexception, ioexception, smartuploadexception
{
if(s == null)
throw new illegalargumentexception("file ''" + s +
"'' not found (1040).");
if(s.equals(""))
throw new illegalargumentexception("file ''" + s +
"'' not found (1040).");
if(!isvirtual(s) && m_denyphysicalpath)
throw new securityexception("physical path is
denied (1035).");
if(isvirtual(s))
s = m_application.getrealpath(s);
java.io.file file = new java.io.file(s);
fileinputstream fileinputstream = new fileinputstream(file);
long l = file.length();
boolean flag = false;
int k = 0;
byte abyte0[] = new byte[i];
if(s1 == null)
m_response.setcontenttype("application/x-msdownload");
else
if(s1.length() == 0)
m_response.setcontenttype("application/x-msdownload");
else
m_response.setcontenttype(s1);
m_response.setcontentlength((int)l);
m_contentdisposition = m_contentdisposition != null ?
m_contentdisposition : "attachment;";
if(s2 == null)
m_response.setheader("content-disposition",
m_contentdisposition + " filename=" +
toutf8string(getfilename(s)));
else
if(s2.length() == 0)
m_response.setheader("content-disposition",
m_contentdisposition);
else
m_response.setheader("content-disposition",
m_contentdisposition + " filename=" + toutf8string(s2));
while((long)k < l)
{
int j = fileinputstream.read(abyte0, 0, i);
k += j;
m_response.getoutputstream().write(abyte0, 0, j);
}
fileinputstream.close();
}

/**
* 將檔名中的漢字轉為utf8編碼的串,以便下載時能正確顯示另存的檔名.
*
* @param s 原檔名
* @return 重新編碼後的檔名
*/
public static string toutf8string(string s) {
stringbuffer sb = new stringbuffer();
for (int i=0;i<s.length();i++) {
char c = s.charat(i);
if (c >= 0 && c <= 255) {
sb.append(c);
} else {
byte[] b;
try {
b = character.tostring(c).getbytes("utf-8");

} catch (exception ex) {
system.out.println(ex);
b = new byte[0];
}
for (int j = 0; j < b.length; j++) {
int k = b[j];
if (k < 0) k += 256;
sb.append("%" + integer.tohexstring(k).
touppercase());
}
}
}
return sb.tostring();
}


注意原始碼中粗體部分,原jspsmartupload元件對返回的檔案未作任何處理,現在做了編碼的轉換工作,將檔名轉換為utf-8形式的編碼形式。utf-8編碼對英文未作任何處理,對中文則需要轉換為%xx的形式。toutf8string方法中,直接利用java語言提供的編碼轉換方法獲得漢字字元的utf-8編碼,之後將其轉換為%xx的形式。

將原始碼編譯後打包成jspsmartupload.jar,拷貝到tomcat的shared/lib目錄下(可為所有web應用程式所共享),然後重啟tomcat伺服器就可以正常下載含有中文名字的檔案了。另,toutf8string方法也可用於轉換含有中文的超級連結,以保證連結的有效,因為有的web伺服器不支援中文連結。

相關文章