在我的应用程序中,我开发了一个留言板,最终用户可以在其中发布消息并获得回复。如果消息(commentText)包含指向网站的任何链接,我需要将它们显示为超链接。如何做到这一点?我正在使用struts 1.3。
JSP 代码:
<tr>
<td width="8%">
<span class="formlabel">
<bean:message key="ui.jsp.dashboard.news.showNews.message" />
</span>
</td>
<td width="80%">
: <a><bean:write name="record" property="commentText" /></a>
</td>
</tr>
commentText 是字符串类型,值是从数据库中检索的。如果commentText contains http
我需要显示它as hyper link
。
Is it possible to represent the plain text that commentText holds completely as html ?
欢迎任何想法,
谢谢