日期:2014-05-17 浏览次数:20754 次
<% String txt = (String)request.getAttribute("txt"); response.setContentType("application/txt"); response.setHeader("Content-disposition", "attachment;filename=table.txt"); BufferedOutputStream bos = null; try { bos = new BufferedOutputStream(response.getOutputStream()); bos.write(txt.getBytes()); } catch (IOException e) { throw e; } finally { if (bos != null) bos.close(); } %>