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>