我們要將Web應(yīng)用系統(tǒng)中的文件資源提供給用戶進(jìn)行下載,首先我們要有一個頁面列出上傳文件目錄下的所有文件,當(dāng)用戶點擊文件下載超鏈接時就進(jìn)行下載操作,編寫一個ListFileServlet,用于列出Web應(yīng)用系統(tǒng)中所有下載文件
獲取文件列表
package me.gacl.web.controller;
import java.io.File;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class ListFileServlet extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
//獲取上傳文件的目錄
String uploadFilePath = this.getServletContext().getRealPath("/WEB-INF/upload");
//存儲要下載的文件名
Map fileNameMap = new HashMap();
//遞歸遍歷filepath目錄下的所有文件和目錄,將文件的文件名存儲到map集合中
listfile(new File(uploadFilePath),fileNameMap);//File既可以代表一個文件也可以代表一個目錄
//將Map集合發(fā)送到listfile.jsp頁面進(jìn)行顯示
request.setAttribute("fileNameMap", fileNameMap);
request.getRequestDispatcher("/listfile.jsp").forward(request, response);
}
public void listfile(File file,Map map){
//如果file代表的不是一個文件,而是一個目錄
if(!file.isFile()){
//列出該目錄下的所有文件和目錄
File files[] = file.listFiles();
//遍歷files[]數(shù)組
for(File f : files){
//遞歸
listfile(f,map);
}
}else{
/**
目前創(chuàng)新互聯(lián)已為上千多家的企業(yè)提供了網(wǎng)站建設(shè)、域名、虛擬主機(jī)、網(wǎng)站托管維護(hù)、企業(yè)網(wǎng)站設(shè)計、什邡網(wǎng)站維護(hù)等服務(wù),公司將堅持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。
處理文件名,上傳后的文件是以uuid_文件名的形式去重新命名的,去除文件名的uuid部分
file.getName().indexOf("")檢索字符串中第一次出現(xiàn)"_"字符的位置,如果文件名類似于:9349249849-88343-8344_阿_凡達(dá).avi
那么file.getName().substring(file.getName().indexOf("")+1)處理之后就可以得到阿_凡達(dá).avi部分
*/
String realName = file.getName().substring(file.getName().indexOf("")+1);
//file.getName()得到的是文件的原始名稱,這個名稱是唯一的,因此可以作為key,realName是處理過后的名稱,有可能會重復(fù)
map.put(file.getName(), realName);
}
}
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
doGet(request, response);
}
}
ListFileServlet中l(wèi)istfile方法,listfile方法是用來列出目錄下的所有文件的,listfile方法內(nèi)部用到了遞歸,在實際開發(fā)當(dāng)中,我們肯定會在數(shù)據(jù)庫創(chuàng)建一張表,里面會存儲上傳的文件名以及文件的具體存放目錄,我們通過查詢表就可以知道文件AxiTrader代理申請www.fx61.com/brokerlist/axitrader.html的具體存放目錄,是不需要用到遞歸操作的,這個例子是因為沒有使用數(shù)據(jù)庫存儲上傳的文件名和文件的具體存放位置,而上傳文件的存放位置又使用了散列算法打散存放,所以需要用到遞歸,在遞歸時,將獲取到的文件名存放到從外面?zhèn)鬟f到listfile方法里面的Map集合當(dāng)中,這樣就可以保證所有的文件都存放在同一個Map集合當(dāng)中。
配置
在Web.xml文件中配置ListFileServlet
ListFileServlet
me.gacl.web.controller.ListFileServlet
ListFileServlet
/servlet/ListFileServlet
下載頁面
展示下載文件的listfile.jsp頁面如下:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
下載文件顯示頁面
${me.value}下載
實現(xiàn)文件下載
編寫一個用于處理文件下載的Servlet,DownLoadServlet的代碼如下:
public class DownLoadServlet extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
//得到要下載的文件名
String fileName = request.getParameter("filename"); //23239283-92489-阿凡達(dá).avi
//上傳的文件都是保存在/WEB-INF/upload目錄下的子目錄當(dāng)中
String fileSaveRootPath=this.getServletContext().getRealPath("/WEB-INF/upload");
//通過文件名找出文件的所在目錄
String path = findFileSavePathByFileName(fileName,fileSaveRootPath);
//得到要下載的文件
File file = new File(path + "\" + fileName);
//如果文件不存在
if(!file.exists()){
request.setAttribute("message", "您要下載的資源已被刪除!!");
request.getRequestDispatcher("/message.jsp").forward(request, response);
return;
}
//處理文件名
String realname = fileName.substring(fileName.indexOf("_")+1);
//設(shè)置響應(yīng)頭,控制瀏覽器下載該文件
response.setHeader("content-disposition", "attachment;filename=" + URLEncoder.encode(realname, "UTF-8"));
//讀取要下載的文件,保存到文件輸入流
FileInputStream in = new FileInputStream(path + "\" + fileName);
//創(chuàng)建輸出流
OutputStream out = response.getOutputStream();
//創(chuàng)建緩沖區(qū)
byte buffer[] = new byte[1024];
int len = 0;
//循環(huán)將輸入流中的內(nèi)容讀取到緩沖區(qū)當(dāng)中
while((len=in.read(buffer))>0){
//輸出緩沖區(qū)的內(nèi)容到瀏覽器,實現(xiàn)文件下載
out.write(buffer, 0, len);
}
//關(guān)閉文件輸入流
in.close();
//關(guān)閉輸出流
out.close();
}
public String findFileSavePathByFileName(String filename,String saveRootPath){
int hashcode = filename.hashCode();
int dir1 = hashcode&0xf; //0--15
int dir2 = (hashcode&0xf0)>>4; //0-15
String dir = saveRootPath + "\" + dir1 + "\" + dir2; //upload\2\3 upload\3\5
File file = new File(dir);
if(!file.exists()){
//創(chuàng)建目錄
file.mkdirs();
}
return dir;
}
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
doGet(request, response);
}
}
配置
DownLoadServlet
me.gacl.web.controller.DownLoadServlet
DownLoadServlet
/servlet/DownLoadServlet
1.html5支持的文件下載
非常簡單代碼如下:
下載文件
這種方式不支持ie瀏覽器
2.需要后臺支持的文件下載:
前端代碼如下:
function getRootPath() {
//獲取當(dāng)前網(wǎng)址,如: http://localhost:8083/uimcardprj/share/meun.jsp
var curWwwPath = window.document.location.href;
//獲取主機(jī)地址之后的目錄,如: uimcardprj/share/meun.jsp
var pathName = window.document.location.pathname;
var pos = curWwwPath.indexOf(pathName);
//獲取主機(jī)地址,如: http://localhost:8083
var localhostPaht = curWwwPath.substring(0, pos);
//獲取帶"/"的項目名,如:/uimcardprj
var projectName = pathName.substring(0, pathName.substr(1).indexOf('/') + 1);
return (localhostPaht + projectName);
}
function downloadExcel(fileName) {
fileName = encodeURI(fileName);
var url = getRootPath() + "/static/excel/" + fileName;
window.location.href = "data/downloadexcel?fileName=" + fileName + "&url=" + url;
}
此處需要傳遞下載文件的文件名稱與文件的地址(為了避免服務(wù)器路徑問題,此處直接使用前端傳遞的url路徑地址,這種方式也可以用來下載第三方網(wǎng)站上的文件資源),注意對于文件名稱需要處理文件名稱中的中文字符與特殊字符需要使用js方法encodeURI對文件名稱編碼
后臺代碼:
/**- 下載文件
- @param fileName
- @param url
- @return
*/
@RequestMapping(value = "/index/download", method = RequestMethod.GET)@ResponseBody
br/>@ResponseBody
logger.info("下載文件:" + url);
// 需要對url進(jìn)行編碼,默認(rèn)情況下,只編碼最后一個 / 之后的內(nèi)容
int index = url.lastIndexOf("/") + 1;
this.response.reset();
this.response.setContentType("multipart/form-data");
HttpURLConnection conn = null;
InputStream inputStream = null;
try {
url = url.substring(0, index) + URLEncoder.encode(url.substring(index), "utf-8");
//注意URLEncoder.encode會將空格轉(zhuǎn)換為+,需要做特殊處理
url = url.trim().replaceAll("\+", "%20");
this.response.setHeader("Content-Disposition",
"attachment;fileName=" + processFileName(this.request, fileName));
URL url1 = new URL(url);
conn = (HttpURLConnection) url1.openConnection();
inputStream = conn.getInputStream();
ServletOutputStream out = this.response.getOutputStream();
IOUtils.copy(inputStream, out);
out.flush();
} catch (IOException e) {
logger.error("下載模板文件出錯", e);
} finally {
if (null != inputStream) {
try {
inputStream.close();
} catch (IOException e) {
logger.error("下載模板文件出錯", e);
}
}
if (null != conn) {
try {
conn.disconnect();
} catch (Exception e) {
logger.error("下載模板文件出錯", e);
}
}
}
}
/**
- @Title: processFileName
@Description: ie, chrom, firfox下處理文件名顯示亂碼
*/
public static String processFileName(HttpServletRequest request,
String fileNames) {
String codedfilename = null;
try {
String agent = request.getHeader("USER-AGENT");
if (null != agent && agent.indexOf("MSIE") > -1 || null != agent
&& agent.indexOf("Trident") > -1) {// ie
String name = java.net.URLEncoder.encode(fileNames, "UTF8").replaceAll("\+","%20");
codedfilename = name;
} else {// 火狐,chrome等
codedfilename = new String(fileNames.getBytes("UTF-8"),
"iso-8859-1");
}
} catch (Exception e) {
logger.error("文件名稱編碼出錯", e);
}
return codedfilename;
}
下載文件代碼需要注意的地方就只有文件名稱的編碼問題,其他代碼很簡單,需要特別注意URLEncoder.encode將空格轉(zhuǎn)換為+,需要特殊處理轉(zhuǎn)換為%20
3.下載后臺實時生成的文件
簡單的后臺實時生成文件基本代碼和步驟二一致,只是將從網(wǎng)絡(luò)獲取的文件改為從本機(jī)獲取就行了
4.使用post方法下載文件
post方法下載文件主要可以通過兩種方式解決
第一種將post提交到當(dāng)前頁面的隱藏iframe即可,但這種方式在ie和chmore中會有兩種表現(xiàn)形式(一種直接在當(dāng)前頁面下載,一種會打開一個空白頁下載)
var downLoadFile = function (options) {
var config = $.extend(true, {method: 'post'}, options);
var $iframe = $('');
var $form = $('
');
$form.attr('action', config.url);
for (var key in config.data) {
var input = $("");
input.attr("name", key);
input.val(config.data[key]);
$form.append(input);
}
$iframe.append($form);
$(document.body).append($iframe);
$form[0].submit();
$iframe.remove();
}
//調(diào)用方法
downLoadFile({
url: '...', //請求的url
data: {
name:"",
size:"",
......
}//要發(fā)送的數(shù)據(jù)
});
使用以上方式即可使用post的方法下載文件
第二種方法很簡單,可以先用post方式上傳參數(shù),將參數(shù)以緩存的形式存儲在服務(wù)端并返回key給前端,再在post的回調(diào)方法中使用get方式傳遞key給后臺下載文件
樣例代碼很簡單,如下:
$.post("download",params, function (data) {
if (data.success) {
window.location.href = "download?generatorId=" + data.data;
} else {
alert(data.msg);
}
})
網(wǎng)頁標(biāo)題:JavaWEB之文件的下載
網(wǎng)頁URL:
http://weahome.cn/article/pdpcoe.html