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.
如何创建带有滚动文本区域的 GUI,并且在小段文本下方有相应的图像?
我目前正在使用JTextArea带有滚动条的 a 来显示文本,效果很好,但我想在每个小段文本下方显示相应的图像。
JTextArea
您可以使用javax.swing.JTextPane
检查TextSamplerDemo
你可以在这里找到很多例子:
http://www.java2s.com/Code/Java/Swing-JFC/TextPaneSample.htm
最简单的方法是使用JEditorPane您HTMLEditorKit可以使用包括图形的 HTML 文本格式,就像网页一样。
JEditorPane
HTMLEditorKit