struts2中的

struts标签内换行空格被编码不显示:
 
1、前台jsp添加属性 escape="false"
即:escape="false"/>
 
2、后台action中,showtext 将空格换行符替换。
空格:showtext =showtext.replace(" ", "  ");
换行:showtext = "

"+showtext+"

;
            showtext =  showtext.replace("\r\n", "

");

jsp 页面可以这么写

<s:propertyvalue="要显示的内容(string)" escape="false"/>

property属性的背景知识:

http://struts.apache.org/2.x/docs/property.html

你可能感兴趣的:(struts2中的