如何拥有可滚动的JTextPane?

2022-09-03 00:26:15

我想有一个有滚动条的JTextPane,我该怎么做?谢谢。


答案 1

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

JTextPane txt = new JTextPane();

JScrollPane jsp = new JScrollPane(txt);

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

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

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


答案 2

将其包装到JScrollPane中。阅读有关滚动窗格的摆动教程


推荐