如何拥有Scrollable JTextPane?

DNB*_*ims 15 java swing scroll jtextpane

我想有一个带滚动条的JTextPane,我该怎么办?谢谢.

Alb*_*ano 18

要在新的JTextPane上插入滚动条,只需使用JScrollPane:

JTextPane txt = new JTextPane();

JScrollPane jsp = new JScrollPane(txt);
Run Code Online (Sandbox Code Playgroud)

JTextPane API:http://download.oracle.com/javase/6/docs/api/javax/swing/JTextPane.html

JScrollPane API:http://download.oracle.com/javase/6/docs/api/javax/swing/JScrollPane.html

如果您有一些问题,请看看这个问题: Java JTextPane JScrollPane显示问题

或者看看:http://www.daniweb.com/software-development/java/threads/30283


JB *_*zet 5

将其包装到JScrollPane中.阅读有关滚动窗格swing教程.