私のアプリケーションでは、エンド ユーザーがメッセージを投稿して返信を受け取ることができるメッセージ ボードを開発しました。メッセージ (commentText) に Web サイトへのリンクが含まれている場合は、それらをハイパーリンクとして表示する必要があります。これを達成する方法は?私はストラット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 ?
どんなアイデアでも大歓迎です
ありがとう