> I am having a JTextArea and i want to get my values to be written
> in the textarea in a phased manner one line after another.I am using
> append()method for appending text into textarea. I am using
> System.out.println() and ta.append().
System.out.println() writes to System.out not into JTextArea, also don't
wonder.
String text = //read from whatever;
ta.append(text);
ta.append("\n");
> I also want time gap between printing one line and
> another in textarea.How to make it happen??
use javax.swing.Timer

Signature
Andrei Kouznetsov
http://uio.dev.java.net Unified I/O for Java
http://reader.imagero.com Java image reader