如果我在程序中多次使用此功能,选项卡将停止自动滚动。使用一个选项卡自动滚动炒锅:
protected JTextArea addTab(String name){
JTextArea tab = new JTextArea();
tab.setEditable(false);
JScrollPane scroller = new JScrollPane(tab);
scroller.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
this.tabPane.add(name, scroller);
return tab;
}