(转)swing 进度条

package com.view;
import java.awt.Dialog;
import java.awt.Frame;
import java.awt.Window;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.ComponentAdapter;
import java.awt.event.ComponentEvent;

import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JProgressBar;

public class ProgressBarUI implements ActionListener
{

    private static final String DEFAULT_STATUS = "Please Waiting";


    private JDialog dialog;


    private JProgressBar progressBar;


    private JLabel lbStatus;


    private JButton btnCancel;


    private Window parent;


    private Thread thread;  //处理业务的线程


    private String statusInfo;


    private String resultInfo;


    private String cancelInfo;


	protected static boolean flag = false;


    public static void show(Window parent, Thread thread)
    {
        new ProgressBarUI(parent, thread, DEFAULT_STATUS, null, null);
    }


    public static void show(Window parent, Thread thread, String statusInfo)
    {
        new ProgressBarUI(parent, thread, statusInfo, null, null);
    }


    public static void show(Window parent, Thread thread, String statusInfo,

                                  String resultInfo, String cancelInfo)
    {
        new ProgressBarUI(parent, thread, statusInfo, resultInfo, cancelInfo);
    }

    /**
     *
     * @param parent Window
     * @param thread Thread
     * @param statusInfo String
     * @param resultInfo String 进度条运行完毕后显示的信息
     * @param cancelInfo String
     */
    private ProgressBarUI(Window parent, Thread thread, String statusInfo,

                                        String resultInfo, String cancelInfo)
    {
        this.parent = parent;
        this.thread = thread;
        this.statusInfo = statusInfo;
        this.resultInfo = resultInfo;
        this.cancelInfo = cancelInfo;
        initUI();
        startThread();
        dialog.setVisible(true);
    }

    private void initUI()
    {
        if(parent instanceof Dialog)
        {
            dialog = new JDialog((Dialog)parent,  true);
        }
        else if(parent instanceof Frame)
        {
            dialog = new JDialog((Frame)parent,  true);
        }
        else
        {
            dialog = new JDialog((Frame)null,  true);
        }

        final JPanel mainPane = new JPanel(null);
        progressBar = new JProgressBar();
        lbStatus = new JLabel("" + statusInfo);
        btnCancel = new JButton("Cancel");
        progressBar.setIndeterminate(true);
        btnCancel.addActionListener(this);

        mainPane.add(progressBar);
        mainPane.add(lbStatus);
        mainPane.add(btnCancel);

        dialog.getContentPane().add(mainPane);
        dialog.setUndecorated(true); // 除去title
        dialog.setResizable(true);
        dialog.setSize(390, 100);
        dialog.setLocationRelativeTo(parent); //设置此窗口相对于指定组件的位置


        dialog.setDefaultCloseOperation(JDialog.DO_NOTHING_ON_CLOSE); // 不允许关闭

 

        mainPane.addComponentListener(new ComponentAdapter()
        {
            public void componentResized(ComponentEvent e)
            {
                layout(mainPane.getWidth(), mainPane.getHeight());
            }
        });
    }

    private void startThread()
    {
        new Thread()
        {
            public void run()
            {
                try
                {
                	flag =true;
                    thread.start(); // 处理耗时任务
                    // 等待事务处理线程结束
                    thread.join();
                }
                catch(InterruptedException e)
                {
                    e.printStackTrace();
                }
                finally
                {
                    // 关闭进度提示框
                    dialog.dispose();

//                    if(resultInfo != null && !resultInfo.trim().equals(""))
//                    {
//                        String title = "提示";
//                        JOptionPane.showMessageDialog(parent, resultInfo, title,
//
//                                                  JOptionPane.INFORMATION_MESSAGE);
//                    }
                }
            }
        }.start();
    }

    private void layout(int width, int height)
    {
        progressBar.setBounds(20, 20, 350, 15);
        lbStatus.setBounds(20, 50, 350, 25);
        btnCancel.setBounds(width - 85, height - 31, 75, 21);
    }

    @SuppressWarnings("deprecation")
    public void actionPerformed(ActionEvent e)
    {
        resultInfo = cancelInfo;
        flag = false;
        thread.stop();
    }
    
    public static void main(String[] args) throws Exception
    {
       
     //业务线程
        Thread thread = new Thread()
        {
            public void run()
            {
                int index = 0;
                while(index < 5&&flag ==true)
                {
                    try
                    {
                        sleep(1000);                       
                        System.out.println(++index);
                    }
                    catch(InterruptedException e)
                    {
                        e.printStackTrace();
                    }
                }
            }
        };

        ProgressBarUI.show((Frame)null, thread, "Status", "Result", "Cancel");  
       
    }

}
 这是一个监视耗时进程执行的一个进度条,已试验过,代码可用
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值