码迷,mamicode.com
首页 > 其他好文 > 详细

struts2响应文件 struts2下载txt

时间:2018-07-02 14:53:22      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:val   name   lis   tput   odi   void   type   oid   ring   

public class txtAction extends ActionSupport {

private String type;

@Action(value="getTxt")
public String getTxt() {
if("txt".equals(type)){
String restxt="鲲鹏展翅";

ServletActionContext.getResponse().setContentType("text/plain");

ServletActionContext.getResponse().setCharacterEncoding("gbk");
ServletActionContext.getResponse().setHeader("connection", "close");
ServletActionContext.getResponse().setHeader("Content-Disposition","attachement;filename="+System.currentTimeMillis()+".txt");

try {
InputStream is = new ByteArrayInputStream(restxt.getBytes("UTF-8"));

//通过response获得输出流
OutputStream os=ServletActionContext.getResponse().getOutputStream();
byte[] b=new byte[1024];
int len=0;
while((len=is.read(b))!=-1){
os.write(b, 0, len);
}
os.flush();
os.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return null;
}


public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}

}

struts2响应文件 struts2下载txt

标签:val   name   lis   tput   odi   void   type   oid   ring   

原文地址:https://www.cnblogs.com/zjk1/p/9253599.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!