在我的应用程序中,我开发了一个留言板,最终用户可以在其中发布消息并获得回复。如果消息(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 ?
欢迎任何想法,
由于