Guest_imported
New member
- Jan 1, 1970
- 0
I'm creating a clustering software.
In this soft, i'dlike to informe the user of the advance of the clustering in rreal time by a JTextArea.
I have made a thread that direct the System.Out to the JTextArea.
But all the message are printed once the clustering is finished !!
for example , If I do :
public void dofileread(){
System.out.println("read the file FIC"
;
fileread(FIC);
}
the programme reads the file before printing the message.
Thanks for help
Benoit
In this soft, i'dlike to informe the user of the advance of the clustering in rreal time by a JTextArea.
I have made a thread that direct the System.Out to the JTextArea.
But all the message are printed once the clustering is finished !!
for example , If I do :
public void dofileread(){
System.out.println("read the file FIC"
fileread(FIC);
}
the programme reads the file before printing the message.
Thanks for help
Benoit