I have a JTextArea in Java. When I place a large amount of text in it, the text area provides horizontal scrolling.

How can I make my text area wrap instead?

link|improve this question

55% accept rate
thx for your edit mKorbel – Carlo Jan 14 at 4:34
feedback

2 Answers

up vote 8 down vote accepted

Use the JTextArea#setLineWrap method. This is also illustrated in the Swing JTextArea tutorial

link|improve this answer
You're faster than me! 1+ – Hovercraft Full Of Eels Jan 13 at 23:27
That's a first. Most times I am too slow due to the creation of the links to the Javadoc which take some time, even if you know the API from the top of your head – Robin Jan 13 at 23:29
Tq very much for your reply – Carlo Jan 14 at 0:16
feedback

Look at the API for the methods available to JTextArea, in particular setWrapStyleWord and setLineWrap.

link|improve this answer
tq very much btw eventhough robin answer first :D – Carlo Jan 14 at 0:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.