jsp 檔案下載代碼分享

來源:互聯網
上載者:User

jsp教程 檔案下載代碼分享

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展示了如何利用jsps教程martupload組件來下載檔案,從下面的源碼中就可以看到,下載何其簡單。

源碼如下:

<%@ 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編碼的串,以便下載時能正確顯示另存的檔案名稱.
     * 縱橫軟體製作中心雨亦奇2003.08.01
     * @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伺服器不支援中文連結。

相關文章

聯繫我們

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