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.
我在数据库中有一个数据,例如
A AB\n CDE ABCD\n E ABC\n DE\n
我可以在这种状态下将这些文本设置为复选框吗(行分隔)
提前致谢!
将字符串放在标签之间<html></html>并将每个替换\n为<br/>. 例如,这个:
<html></html>
\n
<br/>
AB\nCD
...必须变成这样:
<html>AB<br/>CD</html>
您可以在 Swing 组件上使用 HTML 标记来实现这一点。请参阅如何在 Swing 中使用 HTML