欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

如何让页面一打开就远程自动下载文件

程序员文章站 2023-08-26 19:52:03
在页面或者后台response,直接用文件头加你的文件,文件流写出。 比如在页面这样写,当然,最好在后台写: <%@ page language="java" import...
在页面或者后台response,直接用文件头加你的文件,文件流写出。

比如在页面这样写,当然,最好在后台写:

<%@ page language="java" import="java.util.*" pageencoding="gbk"%>

<%

string path = request.getcontextpath();

string basepath = request.getscheme()+"://"+request.getservername()+":"+request.getserverport()+path+"/";

%>

<!doctype html public "-//w3c//dtd html 4.01 transitional//en">

<html>

  <head>

    <base href="<%=basepath%>">

    

    <title>my jsp 'test.' starting page</title>

    

 <meta http-equiv="pragma" content="no-cache">

 <meta http-equiv="cache-control" content="no-cache">

 <meta http-equiv="expires" content="0">    

 <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">

 <meta http-equiv="description" content="this is my page">

 <!--

 <link rel="stylesheet" type="text/css" href="styles.css">

 -->

  </head>

  

  <body>

    <% 

// 得到文件名字和路径 

string filename = "example.zip"; 

string filepath = "d:\\";

// 设置响应头和下载保存的文件名 

response.setcontenttype("application/octet-stream"); 

response.setheader("content-disposition", 

"attachment; filename=\"" + filename + "\"");

// 打开指定文件的流信息 

java.io.fileinputstream fileinputstream = 

new java.io.fileinputstream(filepath + filename);

// 写出流信息 

int i; 

while ((i=fileinputstream.read()) != -1) { 

out.write(i); 

fileinputstream.close(); 

out.close();

%>

  </body>

</html>