JSP点击链接后下载文件功能_JSP教程-查字典教程网
JSP点击链接后下载文件功能
JSP点击链接后下载文件功能
发布时间:2015-06-05 来源:查字典编辑
摘要:/***//***实现文件另存功能**@paramtext*文件内容*@paramfileName*文件名称*@return*/protec...

/** *//**

* 实现文件另存功能

*

* @param text

* 文件内容

* @param fileName

* 文件名称

* @return

*/

protected String renderFile(String text, String fileName)

throws IOException

{

response.addHeader("Content-Disposition", "attachment; filename="

+ fileName);

response.setContentType("application/octet-stream");

response.setCharacterEncoding("GB2312");

response.getWriter().write(text);

response.flushBuffer();

response.getWriter().close();

return null;

}

下载的action:

/** *//**

* 提供下载的方法

* @return

*/

public String down()

{

String dir = getFullPath() + "/upload/file/";

try

{

if (!FileUtils.exists(dir))

{

new File(dir).mkdirs();

}

Random r = new Random(System.currentTimeMillis());

Integer randomInt = r.nextInt();

this.renderFile("test content:" + randomInt,randomInt + ".txt");

}

catch (IOException e)

{

e.printStackTrace();

this.renderText(e.getMessage());

}

return null;

}

页面链接调用:

下载

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新JSP教程学习
    热门JSP教程学习
    编程开发子分类