请问JAVA图形界面中怎么做滚动条啊

2025-01-25 08:27:17
推荐回答(2个)
回答1:

在你的类继承了JFrame后,创建JTextArea和JScrollPane对象,添加JTextArea对象到JScrollPane里,最后把JScrollPane对象添加到根容器,例:
//获取窗体根容器
Container ct = this.getContentPane();
//创建文本域对象
JTextArea showInfo = new JTextArea();
//创建滚动板对象,并把文本域添加到滚动面板中
JScrollPane scroll = new JScrollPane(showInfo);
//添加组件到容器
ct.add(scroll);
//设置窗体尺寸和显示位置
this.setBounds(180, 100, 600, 500);
//设置窗体可见
this.setVisible(true);

回答2:

在API找JScrollPane方法看看
JScrollPane就是GUI的滚动条