Finding a Method for Incremental Output in Java

  • Context: Java 
  • Thread starter Thread starter Yoss
  • Start date Start date
  • Tags Tags
    Java Method Output
Click For Summary
SUMMARY

This discussion focuses on implementing incremental output in Java terminal applications. Users can achieve this by utilizing terminal control characters, specifically the carriage return character ('\r') and backspace ('\b'), to overwrite previous output. Additionally, the use of Java libraries like "javacurses" can facilitate more advanced terminal control. The conversation highlights practical methods for displaying progress updates without cluttering the terminal output.

PREREQUISITES
  • Understanding of Java programming, specifically terminal I/O.
  • Familiarity with terminal control characters such as '\r' and '\b'.
  • Basic knowledge of terminal libraries like "javacurses".
  • Experience with output formatting in console applications.
NEXT STEPS
  • Research how to implement terminal control characters in Java applications.
  • Explore the "javacurses" library for enhanced terminal output capabilities.
  • Learn about creating dynamic console interfaces using Java.
  • Investigate alternative methods for visualizing progress in terminal applications.
USEFUL FOR

Java developers, software engineers working on terminal applications, and anyone interested in enhancing console output for better user experience.

Yoss
Messages
27
Reaction score
0
I was curious if anyone knows if there are any methods to do the following in java.

I'm writing a terminal based program in java, and it will be doing incremental updates. I want to output to the terminal the percentage done, but to replace the last output. For example:

$>java jprog
Percent completed...0%
...
$>java jprog
Percent completed...5%.

Instead of
$>java jprog
Percent completed...0%
Percent completed...5%
...

I checked the java API's a little, in the PrintStream and OutputStream classes, but couldn't find any methods like that. Anybody know? Thanks.
 
Technology news on Phys.org
Standard output by itself cannot do such a thing. To accomplish this, your Java program actually needs to control the terminal window which shows the output. I suggest you look into implementations of "curses" in Java, for example:

http://sourceforge.net/projects/javacurses/

- Warren
 
I'm not sure if your Java app can read termcap/terminfo, but it should be possible to send terminal control characters (or maybe backspace) to move the cursor around. (That's what curses does after all.)
 
You could display the information in an alternate manner. For example, you could plot a graph:


#===1===2===3===4===5===6===7===8===9===#

And fill up the line below it one character at a time as it progresses. For example, at 22.5%, it would look like:

#===1===2===3===4===5===6===7===8===9===#
#===1===2=

and the cursor is at the end of the second line, ready to display another character as necessary.

You can make this prettier if you're willing to assume an equal width font.



If you're willing to assume a *NIX-style environment, the character '\r' is a carriage return (without the line feed) -- it positions the cursor at the beginning of the current line. You could use this to achieve the effect you describe. (Backspace would usually work too, as mentioned)
 
Thanks for all of your suggestions guys, but I did find out a good way to do it:

'\b'.

:E

edit: oops Nate didn't see your reply!
 
Yoss,
Care to share what you did? I am writing a load tool and I want to print a running throughput average to the console.

Thanks.
 

Similar threads

  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 1 ·
Replies
1
Views
885
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 1 ·
Replies
1
Views
1K
Replies
2
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 1 ·
Replies
1
Views
4K
  • · Replies 13 ·
Replies
13
Views
2K