重複の可能性:
Java Textarea ScrollPane
テキストエリアにスクロールバーを表示するためのコードがありますが、実際には機能しません。助言がありますか?
final JTextArea textArea = new JTextArea();
textArea.setEditable(false);
textArea.setBounds(10, 152, 456, 255);
textArea.setBorder(border);
textArea.setLineWrap(true);
sbrText = new JScrollPane(textArea);
sbrText.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
panel_1.add(textArea);