首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

struts2 异步提醒修改密码成功 流的方式

2012-09-20 
struts2 异步提示修改密码成功 流的方式public String delete() throws UnsupportedEncodingException {si

struts2 异步提示修改密码成功 流的方式
public String delete() throws UnsupportedEncodingException {
simple = new SimpleCRUDImpl();
simple.doDelete(news.getId());
byte[] buff = null;
buff = "you delete news succeed".getBytes("utf-8");
resultStream = new ByteArrayInputStream(buff, 0, buff.length);
return SUCCESS;
}
xml 配置部分
<action name="batchdelete" type="stream">
<param name="contentType">text/plain</param>
<param name="inputName">resultStream</param>
</result>
<interceptor-ref name="defaultStack" />
<interceptor-ref name="access" />
</action>

热点排行