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上显示字符串数组。下面是我写的代码:
<s:iterator value="ccActivityOperationVO.output" var="Output"> <s:property value="#Output"/><br/> </s:iterator>
使用此代码,我可以打印字符串数组,但我会丢失文本前后的空格等格式。注意:我没有使用任何类型的修剪。
将<pre>标签包裹在值周围。它保留了空白。
<pre>
<s:iterator value="ccActivityOperationVO.output" var="Output"> <pre><s:property value="#Output"/></pre><br/> </s:iterator>
在 HTML 头部添加以下样式
<style type='text/css'> pre {display: inline;} </style>