本文目录一览:
jsp实现文件的下载
%@pagelanguage="java" import="java.io.*,java.net.*" contentType="application/x-msdownload" pageEncoding="UTF-8"%%
//关于文件下载时采用文件流输出的方式处理:
//加上response.reset(),并且所有的%后面不要换行,包括最后一个;
String url = request.getParameter("url");
System.out.print(url);
int k = url.lastIndexOf("\\");
String url1=url.substring(k+1,url.length());
response.reset();//可以加也可以不加
response.setContentType("application/x-download");
String filedownload = url;
String filedisplay = url1;
filedisplay = URLEncoder.encode(filedisplay,"UTF-8");
response.addHeader("Content-Disposition","attachment;filename=" + filedisplay);
OutputStream outp = null;
FileInputStream in = null;
try
{
outp = response.getOutputStream();
in = new FileInputStream(filedownload);
byte[] b = new byte[1024];
int i = 0;
while((i = in.read(b)) 0)
{
outp.write(b, 0, i);
}
out.clear();
out = pageContext.pushBody();
outp.flush();
}
catch(Exception e)
{
System.out.println("Error!");
}
finally
{
if(in != null)
{
in.close();
in = null;
}
if(outp != null)
{
outp.close();
outp = null;
}
}
%
怎么把网上下载的jsp代码放进eclipse中运行,求详细的过程
有以下方式:
1、如果是Eclipse项目,可以直接使用导入功能整个的导入进去。
2、如果不是Eclipse项目,可以重新在Eclipse里面新建一个Web项目,然后把需要的jsp文件复制粘贴到WebContent里面。
从网上下载的JSP源代码要再怎么运行
首先用eclipse导入到项目中, tomcat解压到本地
根据提示修正build path错误
根据提示讲faced修改为webapp
eclipse右键 run as tomcat即可
jsp页面如何实现下载文档
jsp页面下载文档是在jsp中有一个a标签 ,当用户点击a标签的时候下载文件。
一般采用href属性直接指向一个服务器地址,只要链接的文件存在,就会给出弹出保存对话框.
点击a标签 先执行onclick事件,再请求href中指向的地址。
前端jsp:
a href="#" onclick="javascript:downloadtest('${app.id}')" id="pluginurl" style="color: #83AFE2;text-decoration:underline;"/a
然后在js中:
function downloadtest(id){
var url = "%=request.getContextPath()%/app/download" + "/" + id;
$("#pluginurl").attr("href",url);
}
后台处理下载逻辑的java代码:
/**
* 下载文件
* @param id appid
* @param response
*/
@RequestMapping(value="/download/{id}")
public void download(@PathVariable String id, HttpServletResponse response){
String filepath = "";
Result result = appService.getAppById(id);
App app = (App) result.getMap().get("app");
if(app == null){
return;
}
filepath = app.getUrl();
File file = new File(filepath);
InputStream inputStream = null;
OutputStream outputStream = null;
byte[] b= new byte[1024];
int len = 0;
try {
inputStream = new FileInputStream(file);
outputStream = response.getOutputStream();
response.setContentType("application/force-download");
String filename = file.getName();
filename = filename.substring(36, filename.length());
response.addHeader("Content-Disposition","attachment; filename=" + URLEncoder.encode(filename, "UTF-8"));
response.setContentLength( (int) file.length( ) );
while((len = inputStream.read(b)) != -1){
outputStream.write(b, 0, len);
}
} catch (Exception e) {
e.printStackTrace();
}finally{
if(inputStream != null){
try {
inputStream.close();
inputStream = null;
} catch (IOException e) {
e.printStackTrace();
}
}
if(outputStream != null){
try {
outputStream.close();
outputStream = null;
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
JSP下载代码
我就不给你代码。呵呵。
1、得到该目录下文件的名集合。
2、将该集合的内容动态生成多下拉列表框。
3、在用户选择并按下下载后,转入下载页面,同时传递用户选择的文件名供这个页面动态生成下载地址。
例如,文件集合为a.txt、b.txt,文件存在了webapp目录下的down文件夹。
用户提交了 a.txt,这时候只要在你想的地方生成一个连接到***.***.***/down/a.txt 的超链接就可以了。