public class JscrolDemo extends JFrame {
public static void main(String[] args) {
new JscrolDemo();
}
public JscrolDemo() {
Container container = this.getContentPane();
//文本域
JTextArea textArea = new JTextArea(20, 50);
textArea.setText("我在努力学习");
//scrol 面板
JScrollPane scrollPane = new JScrollPane(textArea); //放入有滚动条的面板
container.add(scrollPane);
this.setVisible(true);
this.setBounds(100,100,300,350);
this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
}
}