Search code examples
javastringswingjtextarea

Java - how to split whole words in JTextArea


I have a problem with JTextArea.

Screen:

enter image description here

JTextArea makes whole words splitted. Is it possible to change it?


Solution

  • 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