给 JTextArea 添加滚动条

 JTextArea添加滚动条:

public static JTextArea logTxtArea = new JTextArea();
JScrollPane logTxtScrollPane = new JScrollPane(logTxtArea);
logTxtScrollPane.setPreferredSize(new Dimension(579, 304));
logTxtScrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
logTxtScrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);

 

注意:JTextArea不可以设置大小,仅设置JScrollPane大小即可,否则会出现不正常的滚动条。

你可能感兴趣的:(C++,c,jsp,C#,Blog)