Displaying the Percentage Done on a JProgressBar Component : ProgressBar « Swing JFC « Java






Displaying the Percentage Done on a JProgressBar Component

  

import javax.swing.JProgressBar;

public class Main {
  public static void main(String[] argv) throws Exception {
    int minimum = 0;
    int maximum = 100;
    JProgressBar progress = new JProgressBar(minimum, maximum);

    // Overlay a string showing the percentage done
    progress.setStringPainted(true);

  }
}

   
    
  








Related examples in the same category

1.Create a ProgressBar
2.Create a horizontal progress bar
3.Create a vertical progress bar
4.Creating a JProgressBar Component with an Unknown Maximum
5.Set all the values at once by using the model
6.Listening for Value Changes in 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.