浏覽器打開頁面實現文件下載的程序代碼(php/jsp/java) 有需要學習的同學可參考一下。
tomcat中配置如下:
代碼如下 復制代碼 <mime-mapping>
<extension>txt</extension>
<mime-type>application/octet-stream</mime-type>
</mime-mapping>
<mime-mapping>
<extension>jpg</extension>
<mime-type>application/octet-stream</mime-type>
</mime-mapping>
對於如上配置,當訪問擴展名txt或jpg的資源時就出現下載提示框,如果只需要對某些提到的資源讓其出現下載提示框,上述配置就不行了,解決的方法是在資源的response頭中設置content-type即可,例如:
php 中
代碼如下 復制代碼header("Content-type:application/octet-stream");
header('Content-Disposition: attachment; filename="downloaded.txt"');
下載文件程序
代碼如下 復制代碼 <?
java 中
如果需要為下載設置一個保存的名字,可以用Content-Disposition屬性來指定。
實例
代碼如下 復制代碼<%@page language="java" contentType="application/x-msdownload" import="java.io.*,java.net.*" pageEncoding="gbk"%><%
response.reset();//可以加也可以不加
response.setContentType("application/x-download");//設置為下載application/x-download
// /../../退WEB-INF/classes兩級到應用的根目錄下去,注意Tomcat與WebLogic下面這一句得到的路徑不同,WebLogic中路徑最後沒有/
ServletContext context = session.getServletContext();
String realContextPath = context.getRealPath("")+"\plan\計劃數據模板.xls";
String filenamedisplay = "計劃數據模板.xls";
filenamedisplay = URLEncoder.encode(filenamedisplay,"UTF-8");
response.addHeader("Content-Disposition","attachment;filename=" + filenamedisplay);
OutputStream output = null;
FileInputStream fis = null;
try
{
output = response.getOutputStream();
fis = new FileInputStream(realContextPath);
byte[] b = new byte[1024];
int i = 0;
while((i = fis.read(b)) > 0)
{
output.write(b, 0, i);
}
output.flush();
}
catch(Exception e)
{
System.out.println("Error!");
e.printStackTrace();
}
finally
{
if(fis != null)
{
fis.close();
fis = null;
}
if(output != null)
{
output.close();
output = null;
}
}
%>