在 jtextarea 中显示带有换行符和间距的文本
我已经使用 setText 函数设置了 JTextArea
的文本
abc="PREFIX table: <http://www.daml.org/2003/01/periodictable/PeriodicTable#> " +
"SELECT ?name " +
"FROM <http://www.daml.org/2003/01/periodictable/PeriodicTable.owl>" +
"WHERE {" +
" ?element table:name ?name. " +
" FILTER(str(?name)=\"sodium\") " +
" }"
texta.setText(abc);//abc is very long string
如何在 JTextArea
中显示带有换行符和空格的字符串。
I have set the text of JTextArea
with setText function
abc="PREFIX table: <http://www.daml.org/2003/01/periodictable/PeriodicTable#> " +
"SELECT ?name " +
"FROM <http://www.daml.org/2003/01/periodictable/PeriodicTable.owl>" +
"WHERE {" +
" ?element table:name ?name. " +
" FILTER(str(?name)=\"sodium\") " +
" }"
texta.setText(abc);//abc is very long string
How do I display the string with newlines and spacing in the JTextArea
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那应该有效。
That should work.
在字符串中使用新行。
'\n'
字符。Use new lines in your String. The
'\n'
character.