标签:style blog color io ar sp div on 问题
在action中传回了一个字符串,那在struts中的type类型是怎么的?也是新手就好奇的查了下。。。。。好多废话。有不到的地方勿喷
一般情况下struts返回的是JSP的页面。但有时要求返回字符串时,那么它的类型就是stream。。。。
下面给个例子:
struts.xml
<action name="next_*" class="*****************" method="{1}" > <result name="list">/jsp/qlNextPlanList.jsp</result> <result name="edit">/jsp/qlNextPlanEdit.jsp</result> <result name="createNextMonthPlan">/jsp/qlNextPlanCreate.jsp</result> <result type="stream"> <param name="contentType">text/html</param> <param name="inputName">inputStream</param> </result> </action>
action类中声明InputStream对象,并设get/set方法
private InputStream inputStream; public InputStream getInputStream() { return inputStream; } public void setInputStream(InputStream inputStream) { this.inputStream = inputStream; }
这样就OK了。。。。。。。。。。
标签:style blog color io ar sp div on 问题
原文地址:http://www.cnblogs.com/hardwork/p/4024491.html