1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| public class TestScrolledTextArea {
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JTextArea code = new JTextArea();
//code.setPreferredSize(new Dimension(60, 60));
code.setLineWrap(true);
code.setWrapStyleWord(true);
JScrollPane scroll = new JScrollPane(code);
scroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
//scroll.setPreferredSize(new Dimension(60, 60));
frame.getContentPane().add(scroll);
frame.setVisible(true);
}
} |