import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
import com.TopWisdom.framework.util.*;
/**
* <p>Title: tomcat 5.59文件下载</p>
* <p>Description: 困惑我与我的项目组很久的web文件下载,今天终于解决了,借此也奉献给与我一样的困惑的朋友</p>
* <p>Copyright: 拓智软件 版权所有</p>
* <p>Company: 拓智软件(TopWisdom)</p>
* @author 李光明
* @version 1.0
*/
public class WebDownLoad extends HttpServlet {
public WebDownLoad() {
}
private ServletConfig config;
public void init(ServletConfig config) throws ServletException {
super.init(config);
this.config = config;
}
public void doPost(HttpServletRequest req,HttpServletResponse res) throws ServletException {
doGet(req,res);
}
//取得附件的名称
public static String getAttachName(String file_name) {
if(file_name==null) return "";
file_name = file_name.trim();
int iPos = 0;
iPos = file_name.lastIndexOf("\\");
if(iPos>-1){
file_name = file_name.substring(iPos+1);
}
iPos = file_name.lastIndexOf("/");
if(iPos>-1){
file_name = file_name.substring(iPos+1);
}
iPos = file_name.lastIndexOf(File.separator);
if(iPos>-1){
file_name = file_name.substring(iPos+1);
}
return file_name;
}
//UTF8转码
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());
}
}
}
String s_utf8 = sb.toString();
sb.delete(0,sb.length());
sb.setLength(0);
sb = null;
return s_utf8;
}
//取得下载文件的真实全路径名称
private String getRealName(HttpServletRequest request,String file_name) {
if(request==null || file_name==null) return null;
file_name = file_name.trim();
if(file_name.equals("")) return null;
String file_path = request.getRealPath(file_name);
if ( file_path== null) return null;
File file = new File(file_path);
if (!file.exists()) return null;
return file_path;
}
//实现下载
public void doGet(HttpServletRequest request,HttpServletResponse response) throws ServletException {
String file_name = request.getParameter("file_name");
if(file_name==null) file_name = "";
file_name = file_name.trim();
InputStream inStream= null;
String attch_name = "";
byte[] b = new byte[100];
int len= 0;
try {
//取得附件的名称
attch_name = getAttachName(file_name);
file_name = getRealName(request,file_name);
if(file_name==null) {
System.out.println("文件不存在,或者禁止下载");
return ;
}
attch_name = toUtf8String(attch_name);
//读到流中
inStream=new FileInputStream(file_name);
//设置输出的格式
response.reset();
response.setContentType("application/x-msdownload");
response.addHeader("Content-Disposition","p_w_upload; filename=\"" + attch_name + "\"");
//循环取出流中的数据
while((len=inStream.read(b)) >0) {
response.getOutputStream().write(b,0,len);
}
inStream.close();
}catch ( Exception e ){
if ( e instanceof java.io.FileNotFoundException ) {
try {
response.sendRedirect("/tip/file_not_found.html");
}
catch ( IOException ex ) {
ex.printStackTrace(System.err);
}
}
else {
e.printStackTrace(System.err);
}
}
}
}
采用HttpServlet 实现web文件下载
转载
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
java和vue实现文件下载
java和vue实现文件下载
java vue -
WEB实现大文件上传和下载
我们平时经常做的是上传文件,上传文件夹与上传文件类似,但也有一些不同之处,这次做了上传文件夹就记录下以备后用。 这次项目的需求: 支持大文件的上传和续传,要求续传支持所有浏览器,包括ie6,ie7,ie8,ie9,Chrome,Firefox,360安全浏览器,并且刷新浏览器后仍然能够续传,重启浏览
网页上传整个文件夹 网页实现大文件上传和下载 JSP实现大文件上传和下载 WEB实现大文件上传和下载 PHP实现大文件上传和下载 -
HttpServlet为什么要实现serializable?
HttpServlet为什么要实现serializable?在什么情况下,servlet会被序列化?如果未显示定义serialVersionUID
http tomcat 网络协议 原力计划 序列化 -
java通过struts实现web中的文件下载
上一篇已经记录了 web中的文件上传功能java通过struts实现web中
jsp file download struts2 web