Hi!
How can I make a output every time change.
F.e.
this makes for every i another line.Quote:
try{
for(int i=0; i<6; i++){
System.out.println("Test "+(i+1));
Thread.sleep(1000);
}
}catch(Exception e){...}
I want to make it change itself, like % of downloaded in Linux-terminal,
I wanna have in the same line after 1 sec another content !

