程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 浏覽器打開頁面實現文件下載的程序代碼(php/jsp/java)

浏覽器打開頁面實現文件下載的程序代碼(php/jsp/java)

編輯:關於PHP編程

浏覽器打開頁面實現文件下載的程序代碼(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"');

下載文件程序

 代碼如下 復制代碼 <?
header("content-type:text/html; charset=utf-8");
$file_name=$_GET['name']; //服務器的真實文件名
$file_realName=urldecode($_GET['real']); //數據庫的文件名urlencode編碼過的
$file_dir="upload/";
$file = fopen($file_dir . $file_name,"r"); // 打開文件
// 輸入文件標簽
header( "Pragma: public" );
header( "Expires: 0" );
Header("Content-type: application/octet-stream");
Header("Accept-Ranges: bytes");
Header("Accept-Length: ".filesize($file_dir . $file_name));
Header("Content-Disposition: attachment; filename=" . iconv("UTF-8","GB2312//TRANSLIT",$file_realName));
// 輸出文件內容
echo fread($file,filesize($file_dir . $file_name));
fclose($file);
exit;
?>


java 中

 代碼如下 復制代碼 response.setContentType("application/octet-stream");
resp.setHeader("Content-Disposition", "attachment;filename="downloaded.txt");

如果需要為下載設置一個保存的名字,可以用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;
  }
  }
  %>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved