摘要:
原因:在ActionForm中使用了ActionErrors,并且ActionErrors中的内容不为空,所以Struts会根据action的配置跳转到input指定的页面。但是我在配置action的时候没有配置input这一项。 阅读全文
摘要:
其中的关键就是这个POJO是你自己去new一个,struts是不会帮你创建的!参考http://luohua.iteye.com/blog/39976表单页Insert title here INFO: 姓名: 年龄: ActionFormpublic class UseBeanForm extends ActionForm { private Person person = new Person(); // You mu... 阅读全文
摘要:
今天遇到这么一个情况,在Action代码中进行文件下载: ActionForm得到file_id,通过file_id进行数据库查询得到file_name以及服务器硬盘上的file_uri,其中file_name是中文,然后通过如下代码下载response.setContentType("application/x-download");response.setHeader("Content-Disposition","attachment;filename="+file_name);OutputStream outputStream 阅读全文