I would like to know if it's possible to support '\r' (carriage return) without new line break in JTextArea or is this feature supported in any other similar implementations in Java?
Say, after several text appended to a text area, I want this to be appended.
"Please wait, a download is in progress"
After that a download progress status with progress meter character '#' gets appended. e.g.:
#\r
##\r
###\r
####\r
#####\r
I would like to inform here that, I'm reading the progress from a buffer character after character. I don't want to replace the '\r' characters I'm reading from the buffer in any way.
So, what I would love to see if, the above progress, is displayed in a single line, without having a line break Say, #########
Best regards