vote up 2 vote down star

How do I add scrollbars to a JTextArea?

flag
2  
If you edit your question to a totally new one answers will stop making sense, write a comment instead (or answer yourself if you have to little cred to write comments). Do it as they do in the example, it works. If it doesn't work you've done something wrong and it is impossible to say what unless you post some source. – Fredrik Jun 27 at 9:32

3 Answers

vote up 8 vote down

Put it in a JScrollPane

Edit: Here is a link for you: http://java.sun.com/docs/books/tutorial/uiswing/components/textarea.html

link|flag
vote up 6 vote down

As Fredrik mentions in his answer, the simple way to achieve this is to place the JTextArea in a JScrollPane. This will allow scrolling of the view area of the JTextArea.

Just for the sake of completeness, the following is how it could be achieved:

JTextArea ta = new JTextArea();
JScrollPane sp = new JScrollPane(ta);   // JTextArea is placed in a JScrollPane.

Once the JTextArea is included in the JScrollPane, the JScrollPane should be added to where the text area should be. In the following example, the text area with the scroll bars is added to a JFrame:

JFrame f = new JFrame();
f.getContentPane().add(sp);

Thank you kd304 for mentioning in the comments that one should add the JScrollPane to the container rather than the JTextArea -- I feel it's a common error to add the text area itself to the destination container rather than the scroll pane with text area.

The following articles from The Java Tutorials has more details:

link|flag
+ and add 'sp' to the container/panel instead of 'ta' – kd304 Jun 27 at 15:37
@kd304: Right, I was trying to decide whether that should be added or not. I'll go ahead and add it. Thanks for the suggestion :) – coobird Jun 27 at 15:38
+1 for providing the source code I was too lazy to write :-) – Fredrik Jun 27 at 19:15
vote up 1 vote down

You first have to define a JTextArea as per usual:

public final JTextArea mainConsole = new JTextArea("");

Then you put a JScrollPane over the TextArea

JScrollPane scrollPane = new JScrollPane(mainConsole);
scrollPane.setBounds(10,60,780,500);
scrollPane.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);

The last line says that the vertical scrollbar will always be there. There is a similar command for horizontal. Otherwise, the scrollbar will only show up when it is needed (or never, if you use _SCROLLBAR_NEVER). I guess it's your call which way you want to use it.

You can also add wordwrap to the JTextArea if you want to:Guide Here

Good luck,
Norm M

P.S. Make sure you add the ScrollPane to the JPanel and not add the JTextArea.

link|flag

Your Answer

Get an OpenID
or

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