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

有关struts中返回结果是字符串的问题

时间:2014-10-14 17:16:39      阅读:179      评论:0      收藏:0      [点我收藏+]

标签: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了。。。。。。。。。。

有关struts中返回结果是字符串的问题

标签:style   blog   color   io   ar   sp   div   on   问题   

原文地址:http://www.cnblogs.com/hardwork/p/4024491.html

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