JSP 多個文件打包下載代碼
更新時間:2008年11月25日 10:01:13 作者:
今天看了下自己以前做的JSP程序,其中有段程序是自動將多個文件打成壓縮包下載
現(xiàn)把該程序主要代碼貼下,供大家需要的時候參考下:
<%@page import="java.util.*,
java.net.*,
java.text.*,
java.util.zip.*,
java.io.*" %>
<%!
static Vector expandFileList(String[] files, boolean inclDirs){
Vector v = new Vector();
if (files == null) return v;
for (int j=0; j < files.length; i++) v.add (new File(URLDecoder.decode(files[j])));
for (int i=0; i < v.size(); i++){
File f = (File) v.get(i);
if (f.isDirectory()){
File[] fs = f.listFiles();
for (int n = 0; n < fs.length; n++) v.add(fs[n]);
if (!inclDirs){
v.remove(i);
i--;
}
}
}
return v;
}
class Writer2Stream extends OutputStream{
Writer out;
Writer2Stream (Writer w){
super();
out = w;
}
public void write(int i) throws IOException{
out.write(i);
}
public void write(byte[] b) throws IOException{
for (int j=0;j<b.length;j++){
int n=b[j];
//Convert byte to ubyte
n=((n>>>4)&0xF)*16+(n&0xF);
out.write (n);
}
}
public void write(byte[] b, int off, int len) throws IOException{
for (int j = off; j < off + len; j++){
int n=b[j];
n = ((n>>>4)&0xF)*16+(n&0xF);
out.write(n);
}
}
}
%>
<%
/////下載壓縮文件包
Vector v = expandFileList(request.getParameterValues("selfile"), false);
if (v.size() == 0){
request.setAttribute("error", "No files selected");
}
else{
File dir_file = new File(request.getRealPath("") + "/myfile/");
int dir_l = dir_file.getAbsolutePath().length();
response.setContentType ("application/zip");
response.setHeader ("Content-Disposition", "attachment;filename=\"downloadname.rar\"");
out.clearBuffer();
ZipOutputStream zipout = new ZipOutputStream(new Writer2Stream(out));
zipout.setComment("Download selected files \nas one WinRAR file:\ndownloadname.rar");
zipout.setLevel(1);
for (int i=0;i<v.size();i++){
File f = (File)v.get(i);
if (f.canRead()){
zipout.putNextEntry(new ZipEntry(f.getAbsolutePath().substring(dir_l+1)));
BufferedInputStream fr = new BufferedInputStream(new FileInputStream(f));
byte buffer[] = new byte[0xffff];
int b;
while ((b=fr.read())!=-1) zipout.write(b);
fr.close();
zipout.closeEntry();
}
}
zipout.finish();
out.flush();
}
%>
<%@page import="java.util.*,
java.net.*,
java.text.*,
java.util.zip.*,
java.io.*" %>
<%!
static Vector expandFileList(String[] files, boolean inclDirs){
Vector v = new Vector();
if (files == null) return v;
for (int j=0; j < files.length; i++) v.add (new File(URLDecoder.decode(files[j])));
for (int i=0; i < v.size(); i++){
File f = (File) v.get(i);
if (f.isDirectory()){
File[] fs = f.listFiles();
for (int n = 0; n < fs.length; n++) v.add(fs[n]);
if (!inclDirs){
v.remove(i);
i--;
}
}
}
return v;
}
class Writer2Stream extends OutputStream{
Writer out;
Writer2Stream (Writer w){
super();
out = w;
}
public void write(int i) throws IOException{
out.write(i);
}
public void write(byte[] b) throws IOException{
for (int j=0;j<b.length;j++){
int n=b[j];
//Convert byte to ubyte
n=((n>>>4)&0xF)*16+(n&0xF);
out.write (n);
}
}
public void write(byte[] b, int off, int len) throws IOException{
for (int j = off; j < off + len; j++){
int n=b[j];
n = ((n>>>4)&0xF)*16+(n&0xF);
out.write(n);
}
}
}
%>
<%
/////下載壓縮文件包
Vector v = expandFileList(request.getParameterValues("selfile"), false);
if (v.size() == 0){
request.setAttribute("error", "No files selected");
}
else{
File dir_file = new File(request.getRealPath("") + "/myfile/");
int dir_l = dir_file.getAbsolutePath().length();
response.setContentType ("application/zip");
response.setHeader ("Content-Disposition", "attachment;filename=\"downloadname.rar\"");
out.clearBuffer();
ZipOutputStream zipout = new ZipOutputStream(new Writer2Stream(out));
zipout.setComment("Download selected files \nas one WinRAR file:\ndownloadname.rar");
zipout.setLevel(1);
for (int i=0;i<v.size();i++){
File f = (File)v.get(i);
if (f.canRead()){
zipout.putNextEntry(new ZipEntry(f.getAbsolutePath().substring(dir_l+1)));
BufferedInputStream fr = new BufferedInputStream(new FileInputStream(f));
byte buffer[] = new byte[0xffff];
int b;
while ((b=fr.read())!=-1) zipout.write(b);
fr.close();
zipout.closeEntry();
}
}
zipout.finish();
out.flush();
}
%>
相關(guān)文章
關(guān)于JSP用戶登錄連接數(shù)據(jù)庫詳情
這篇文章主要介紹了關(guān)于JSP用戶登錄連接數(shù)據(jù)庫的相關(guān)資料,需要的朋友可以參考下面文章內(nèi)容2021-09-09jsp 開發(fā)之struts2中s:select標簽的使用
這篇文章主要介紹了jsp 開發(fā)之struts2中s:select標簽的使用的相關(guān)資料,需要的朋友可以參考下2017-08-08jsp中點擊圖片彈出文件上傳界面及實現(xiàn)預(yù)覽實例詳解
這篇文章主要介紹了jsp中點擊圖片彈出文件上傳界面及實現(xiàn)預(yù)覽實例詳解的相關(guān)資料,需要的朋友可以參考下2017-03-03JSP 開發(fā)中過濾器filter設(shè)置編碼格式的實現(xiàn)方法
這篇文章主要介紹了JSP 開發(fā)中過濾器filter設(shè)置編碼格式的實現(xiàn)方法的相關(guān)資料,我們知道為了避免提交數(shù)據(jù)的亂碼問題,需要在每次使用請求之前設(shè)置編碼格式,這里提供一次性修改所有的請求編碼問題,需要的朋友可以參考下2017-08-08JSP 自定義標簽實現(xiàn)數(shù)據(jù)字典的實例
這篇文章主要介紹了JSP 自定義標簽實現(xiàn)數(shù)據(jù)字典的實例的相關(guān)資料,這里實現(xiàn)這樣的功能,希望能幫助到大家,需要的朋友可以參考下2017-08-08