`
蒋启云
  • 浏览: 1514 次
  • 性别: Icon_minigender_2
  • 来自: 湖南
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论
文章列表
public   class  DownloadServlet  extends  HttpServlet {      private  String contentType  =   " application/x-msdownload " ;      private  String enc  =   " utf-8 " ;      private  String fileRoot  =   "" ;   ...
import  java.io.BufferedInputStream; import  java.io.BufferedOutputStream; import  java.io.File; import  java.io.FileInputStream; import  java.io.IOException; import  javax.servlet.ServletException; import  javax.servlet.ServletOutputStream; import  javax.servlet.http.HttpServlet; im ...
Java文件下载的几种方式      public  HttpServletResponse download(String path, HttpServletResponse response) {          try  {              //  path是指欲下载的文件的路径。             File file  =   new  File(path);              //  取得文件名。             String filename  =  file.getName();         ...
Global site tag (gtag.js) - Google Analytics