I have a jTextArea with a long string.
Let's usume:
String str = "this is a toooo long string";
Now i want to show this string in one swing jTextArea. But my textArea has limited size on the frame. So, i'm not be able to see the entire string.
For exemple, the text area only shows:
"this is a t"
It is possible to textarea avoid hidden characters auto introducing '\n'? Note: I don't want auto scrool.
Thanks