I have a problem with JTextArea.
Screen:
JTextArea makes whole words splitted. Is it possible to change it?
here is what you should do:
textArea.setLineWrap(true);
textArea.setWrapStyleWord(true);
I took this information from http://docs.oracle.com/javase/tutorial/uiswing/components/textarea.html