Struts2下载遇到的问题。。。

第一种写法==============publicInputStreamgetInputStream()throwsException{try{response.setH... 第一种写法
==============
public InputStream getInputStream() throws Exception {
try {
response.setHeader("Content-Disposition", "attachment;fileName="+
java.net.URLEncoder.encode("测试.rar","UTF-8"));
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return ServletActionContext.getServletContext().getResourceAsStream(inputPath);
}

===============
第二种写法
public InputStream getInputStream() throws Exception {
InputStream is = new FileInputStream("d:\\test.jpg");
try {
response.setHeader("Content-Disposition", "attachment;fileName="+
java.net.URLEncoder.encode("测试.rar","UTF-8"));
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return is;
}
第一种写法:出现错误:ERROR StreamResult:34 - Can not find a java.io.InputStream with the name [inputStream] in the invocation stack. Check the <param name="inputName"> tag specified for this action.
第二种写法:抛出异常:
java.lang.IllegalStateException
at org.apache.catalina.connector.ResponseFacade.sendError(ResponseFacade.java:407)
at org.apache.struts2.dispatcher.Dispatcher.sendError(Dispatcher.java:753)
----------------------------
这是什么原因?
展开
 我来答
百度网友46b235f5b2
2012-09-28 · TA获得超过1397个赞
知道小有建树答主
回答量:676
采纳率:100%
帮助的人:637万
展开全部
struts-xml:

<action name="download"
class="com.test.action.DownLoadAction">
<result name="success" type="stream">
<param name="contentType">
application/octet-stream;charset=utf-8
</param>
<param name="contentDisposition">
attachment;filename=${name}
</param>
<param name="inputName">downloadFile</param>
</result>
</action>

action:
private String name;

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public InputStream getDownloadFile() throws UnsupportedEncodingException {
this.name = new String(name.getBytes("ISO8859-1"), "utf-8");
System.out.println(name+"=============");
return ServletActionContext.getServletContext().getResourceAsStream(
"/upload/"+ this.getName());
}
wuqingaoran
2012-09-28 · TA获得超过162个赞
知道小有建树答主
回答量:296
采纳率:100%
帮助的人:57.9万
展开全部
楼上正解
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式