Java Textarea ScrollPane

后端 未结 4 1830
旧巷少年郎
旧巷少年郎 2021-01-28 23:24

I have created a textarea, and i need a scrollbar applied to the textarea when necessary (when the text gets too long down and it cant be read anymore).

this is the code

4条回答
  •  抹茶落季
    2021-01-28 23:53

    • You have to remove the code line that makes the JTextArea have absolute size on the screen due to using setBounds(). This makes it non-resizable, and JScrollPane works only if its content is resizable.

      // wrong
      textArea.setBounds(10, 152, 456, 255);
      
    • Please read JTextArea and JScrollPane tutorial; please run examples from both tutorials.

提交回复
热议问题