我正在使用struts 1.3来开发应用程序。我有要求我需要将属性值表示为html文本。我有一个名为commentText的属性,其类型为字符串,我使用<bean:write>
打印属性值
<td width="8%"><span class="formlabel">
<bean:message key="ui.jsp.dashboard.news.showNews.button.message" />
</td>
<td width="80%">
: <bean:write name="record" property="commentText" />
</td>
如何将此纯文本表示为html文本?
欢迎任何建议,
由于
答案 0 :(得分:0)
如果它是一个简单的字符串文本,则放在span tag
之间 <span>: <bean:write name="record" property="commentText" /></span>.
最好使用JSTL
<c:out value="YourNormalStringHere" escapeXml="false"/>