Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jspページで、xmlデータを含む文字列をxml形式で表示しようとしています。私はxmlを解析したくありませんが、ブラウザのxmlデータに表示したいだけです。
誰かがこれで私を助けることができますか?
<pre> <c:out value="${xmlString}" /> </pre>
これにより、xmlがきれいに印刷されます
<c:out value="${theXmlString}"/>
改行を保持したい場合は、pre タグを使用します。
<pre><c:out value="${theXmlString}"/></pre>