Specifically, I would like text sent to the user's OutputStream to have word wrapping so that when text continues onto a new line, words are not broken up. So instead of this:
The quick brown fox j
umps over the lazy do
g.
It will show up in the console like this:
The quick brown fox
jumps over the lazy
dog.
One option I know of is to write a method like this one to wrap text to a specific character width:
wrapText(String text, int width)
But I'd rather have the text just wrap automatically to the current width of the user's console. Is there any way to do this? Any objects in java that might help me? Thanks!
Writer, not anOutputStream. AnOutputStreamdeals with binary data, not text. (To write text, you'd typically wrap anOutputStreamin anOutputStreamWriteror something similar.) – Jon Skeet Nov 6 '11 at 21:27PrintStream(like the one obtained fromSystem.out) can deal with character data directly (potential characters encoding issues not considered). – BalusC Nov 6 '11 at 21:31Writeritself - then the caller can decide to use aPrintWriterto wrap anOutputStreamif they really want to. – Jon Skeet Nov 6 '11 at 21:50