使用<pre>

时间:2018-06-11 19:37:47

标签: java html swing jlabel pre

I can successfully wrap normal HTML text in a JLabel. But when I use pre it doesn't seem to wrap.

Here's what I have set the text in my JLabel to:

<html><pre face=\"Arial\" style = \"white-space:pre-wrap;\">" + temp +  "</pre></html>

this same html code works when I test it on w3school's tryit editor (https://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_textarea_wrap)

Please provide the simplest solution possible.

1 个答案:

答案 0 :(得分:0)

<pre>的全部目的是保持文本格式不变。 用于“服务格式化”。它永远不会包裹。

在您命名的页面上无法使用。您可能已将代码放在<textarea>内? <textarea>不会将<pre>解释为标记,而是将其作为普通文本解释,您还会在结果窗口中看到<pre>。不是吗?可能你只是忽略了它。