Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JProgressBar;
import javax.swing.Timer;

public class Main {
    public static void main(String[] args) {
        JProgressBar progressBar = new JProgressBar();
        JButton button = new JButton("Start");
        JFrame f = new JFrame();
        f.setLayout(new FlowLayout());
        f.add(progressBar);
        f.add(button);

        ActionListener updateProBar = new ActionListener() {
            public void actionPerformed(ActionEvent actionEvent) {
                int val = progressBar.getValue();
                if (val >= 100) {
                    //  timer.stop();
                    button.setText("End");
                    return;
                }
                progressBar.setValue(++val);
            }
        };
        Timer timer = new Timer(50, updateProBar);
        button.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                if (timer.isRunning()) {
                    timer.stop();
                    button.setText("Start");
                } else if (button.getText() != "End") {
                    timer.start();
                    button.setText("Stop");
                }
            }
        });
        f.pack();
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setVisible(true);
    }
}