Help for JScrollPane

I am trying to use JScrollPane and JTextArea to create log. How can I set the scrollbar to automatically scroll down to bottom when a new log message is appended and the size of JTextArea becomes larger than JScrollPane window?
[242 byte] By [wellblue88] at [2007-9-30 13:07:41]
# 1
JTextArea jta=new JTextArea();jta.append(Logmessage);jta.setCaretPosition(jta.getText().length())
FahleE at 2007-7-4 18:29:27 > top of Java-index,Administration Tools,Sun Connection...
# 2
Thanks. It works partially. The text area scroll down every serveral lines of new msg added. Any more suggestion?
wellblue88 at 2007-7-4 18:29:27 > top of Java-index,Administration Tools,Sun Connection...
# 3
Problem solved. My log is running with Thread. The message has to be synchronized. Thanks again for your reply.
wellblue88 at 2007-7-4 18:29:27 > top of Java-index,Administration Tools,Sun Connection...