浏览 942 次
锁定老帖子 主题:文件的下载
该帖已经被评为隐藏帖
|
|
---|---|
作者 | 正文 |
发表时间:2008-09-23
<%@ page contentType="text/html; charset=GBK" %> <%@ page import="java.io.*" %> <html> <head> <title> load </title> </head> <body bgcolor="#ffffff"> <% OutputStream outStream1=response.getOutputStream(); byte b[]=new byte[600]; File fileLoad=new File("F:\\upload\\","11.html");\\11.html文件是在F:\\upload\\下 response.setHeader("Content-disposition","attachment;filename=11.html"); response.setContentType("application/html"); long fileLength=fileLoad.length(); String length=String.valueOf(fileLength); response.setHeader("Content_Length",length); FileInputStream in=new FileInputStream(fileLoad); int n=0; while((n=in.read(b))!=-1) { outStream1.write(b,0,n); } %> <h1> JBuilder Generated JSP </h1> <form method="post" action="load.jsp"> <br><br> <input type="submit" name="Submit" value="Submit"> <input type="reset" value="Reset"> </form> </body> </html> 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |