使用构造器JProgressBar(int orient)来创建进度条。其具体的实例代码如下:
publicclassBWF {
publicBWF(){
JFramejf=newJFrame("博为峰教育");
jf.setSize(300, 200);
JPanelcontentPane=newJPanel();
jf.setContentPane(contentPane);
JProgressBarpb=newJProgressBar(JProgressBar.VERTICAL);//创建一个带垂直方向的进度条组件
contentPane.add(newJLabel("进度条:"));
contentPane.add(pb);
jf.setVisible(true);
jf.addWindowListener(newWindowAdapter() {
publicvoidwindowClosing(WindowEvente) {
System.exit(0);
}
});
}
publicstaticvoidmain(String[]args) {
newBWF();
}
}