Create a ProgressBar : ProgressBar « Swing JFC « Java






Create a ProgressBar

  
 
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JProgressBar;

public class Main extends JFrame {
  JProgressBar current = new JProgressBar(0, 2000);
  int num = 0;
  public Main() {
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    JPanel pane = new JPanel();
    current.setValue(0);
    current.setStringPainted(true);
    pane.add(current);
    setContentPane(pane);
  }

  public void iterate() {
    while (num < 2000) {
      current.setValue(num);
      try {
        Thread.sleep(1000);
      } catch (InterruptedException e) {
      }
      num += 95;
    }
  }

  public static void main(String[] arguments) {
    Main frame = new Main();
    frame.pack();
    frame.setVisible(true);
    frame.iterate();
  }
}

   
    
  








Related examples in the same category

1.Create a horizontal progress bar
2.Create a vertical progress bar
3.Creating a JProgressBar Component with an Unknown Maximum
4.Set all the values at once by using the model
5.Listening for Value Changes in a JProgressBar Component
6.Displaying the Percentage Done on a JProgressBar Component
7.Getting and Setting the Values of a JProgressBar Component
8.ProgressBar Demo: long taskProgressBar Demo: long task
9.When information on the task's progress is available, the progress bar can be made determinate:
10.Implement a progressbar in your application
11.ProgressMonitor DemoProgressMonitor Demo
12.Creating a modal progress dialog
13.ProgressBar Demo 2ProgressBar Demo 2
14.Use an actual input file to monitor rather than inducing progress manually
15.A demonstration of the ProgressMonitor toolbarA demonstration of the ProgressMonitor toolbar
16.A demonstration of the JProgressBar componentA demonstration of the JProgressBar component
17.Progress bar SampleProgress bar Sample
18.Sample ProgressSample Progress
19.ProgressBar StepProgressBar Step
20.ProgressBar DemoProgressBar Demo
21.Progressbar demo: set selection background, selection foreground and foregroundProgressbar demo: set selection background, selection foreground and foreground
22.This program demonstrates the use of a progress bar to monitor the progress of a thread.This program demonstrates the use of a progress bar to monitor the progress of a thread.