转载:http://blog.sina.com.cn/s/blog_661a3fce0100msit.html
对于动态显示数据的JTextArea,如果你在其区域点击一下鼠标,那么界面将一直停留在这个地带,JTextArea将不会再自动滚屏到新 append("http://spaces.msn.com/members/sailing8036/")的数据位置,解决方法很简单,如下所示:
JTextArea textArea = new JTextArea(){
public void append(String str) {
super.append(str);
this.setCaretPosition(getDocument().getLength());
}
};
效果图如下:
JTextArea textArea = new JTextArea(){
public void append(String str) {
super.append(str);
this.setCaretPosition(getDocument().getLength());
}
};
效果图如下: