insert a document to jscrollpane
I would like to开发者_开发知识库 display a document (text and images) into a JScrollPane. What is the easiest way to do this?
You need a JTextPane. JScrollPane is for normal texts but if you want document handling with styles and fonts and those stuff you see in text editors, you need JTextPane or JEditorPane.
You can do a search for the sample usage for JTextPane and JEditorPane.
精彩评论