java swing下载栏

标签 java swing download progress-bar

我的代码中有一个小错误,在谷歌上搜索了几个小时后我仍然没有找到答案。问题是进度条上方的文本没有更新。这是我的代码:

public class ProgressGlassPane extends JComponent {

    private static final long serialVersionUID = -2488095988836592321L;
    private static final int BAR_WIDTH = 200;
    private static final int BAR_HEIGHT = 10;
    private final Color TEXT_COLOR = new Color(0x333333);
    @SuppressWarnings("unused")
    private final Color BORDER_COLOR = new Color(0x333333);
    private final float[] GRADIENT_FRACTIONS = new float[] { 0.0f, 0.499f,
            0.5f, 1.0f };
    private final Color[] GRADIENT_COLORS = new Color[] { Color.GRAY,
            Color.DARK_GRAY, Color.BLACK, Color.GRAY };
    private final Color GRADIENT_COLOR2 = Color.WHITE;
    private final Color GRADIENT_COLOR1 = Color.GRAY;

    private int progress;
    private String message = "Downloading file(s): ";

    public ProgressGlassPane() {
        setBackground(Color.WHITE);
        setFont(new Font("Default", Font.BOLD, 16));
        this.progress = 0;
    }

    public int getProgress() {
        return progress;
    }

    public void setNewProgress(int progress) {
        this.progress = progress;
    }

    public void setProgress(int progress) {
        new Thread(new Runnable() {
            @Override
            public void run() {
                // set new progress
                int oldProgress = getProgress();
                setNewProgress(progress);

                // computes the damaged area
                FontMetrics metrics = getGraphics().getFontMetrics(getFont());
                int w = (int) (BAR_WIDTH * ((float) oldProgress / 100.0f));
                int x = w + (getWidth() - BAR_WIDTH) / 2;
                int y = (getHeight() - BAR_HEIGHT) / 2;
                y += metrics.getDescent() / 2;

                w = (int) (BAR_WIDTH * ((float) progress / 100.0f)) - w;
                int h = BAR_HEIGHT;
                // repaint
                repaint(x, y, w, h);
            }
        }).start();
    }

    @Override
    protected void paintComponent(Graphics g) {
        // enables anti-aliasing
        Graphics2D g2 = (Graphics2D) g;
        g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                RenderingHints.VALUE_ANTIALIAS_ON);

        // gets the current clipping area
        Rectangle clip = g.getClipBounds();

        // sets a 65% translucent composite
        AlphaComposite alpha = AlphaComposite.SrcOver.derive(0.65f);
        Composite composite = g2.getComposite();
        g2.setComposite(alpha);

        // fills the background
        g2.setColor(getBackground());
        g2.fillRect(clip.x, clip.y, clip.width, clip.height);

        // centers the progress bar on screen
        FontMetrics metrics = g.getFontMetrics();
        int x = (getWidth() - BAR_WIDTH) / 2;
        int y = (getHeight() - BAR_HEIGHT - metrics.getDescent()) / 2;

        // draws the text
        g2.setColor(TEXT_COLOR);
        System.out.println("drawed string: " + message + getProgress() + "%");
        g2.drawString(message + getProgress() + "%", x, y);

        // goes to the position of the progress bar
        y += metrics.getDescent();

        // computes the size of the progress indicator
        int w = (int) (BAR_WIDTH * ((float) progress / 100.0f));
        int h = BAR_HEIGHT;

        // draws the content of the progress bar
        Paint paint = g2.getPaint();

        // bar's background
        Paint gradient = new GradientPaint(x, y, GRADIENT_COLOR1, x, y + h,
                GRADIENT_COLOR2);
        g2.setPaint(gradient);
        g2.fillRect(x, y, BAR_WIDTH, BAR_HEIGHT);

        // actual progress
        gradient = new LinearGradientPaint(x, y, x, y + h, GRADIENT_FRACTIONS,
                GRADIENT_COLORS);
        g2.setPaint(gradient);
        g2.fillRect(x, y, w, h);

        g2.setPaint(paint);

        // draws the progress bar border
        g2.drawRect(x, y, BAR_WIDTH, BAR_HEIGHT);

        g2.setComposite(composite);
    }
}

然后是主要内容:

public class Test extends JFrame {

    private ProgressGlassPane glass;
    private int progess = 0;

    public Test() {
        this.setSize(new Dimension(500, 500));
        this.setVisible(true);
        this.setDefaultCloseOperation(HIDE_ON_CLOSE);
        this.setLocation(0, 0);

        setGlassPane(glass = new ProgressGlassPane());
        glass.setVisible(true);
    }

    public void calculateProgress() {
        Timer timer = new Timer();
        timer.scheduleAtFixedRate(new TimerTask() {
            @Override
            public void run() {
                System.out.println("progress: " + progess);
                glass.setProgress(progess);
                progess += 10;
                if (progess > 100) {
                    timer.cancel();
                    System.out.println("download finish");
                }
            }
        }, 0, 300);

    }

    public static void main(String[] args) {
        Test test = new Test();
        test.calculateProgress();

    }
}

感谢您的帮助

最佳答案

首先感谢您的快速答复。 @mKorbel,我必须放入一个线程,因为在显示期间我会从服务器下载文件,如果我不将油漆放入线程中,它就不会更新。

@Ashiquzzaman,非常感谢你!它起作用了。

关于java swing下载栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34040762/

相关文章:

java - 应用程序在构建时丢失图像

java - JAXB 编码子类继承

java - 一个需要停止但不是由客户端停止的服务应该如何停止?

java - 将 QRCode 转换为图像。 java

Java 在 drawRect 中 Swing 奇怪的额外像素

Java Box (BoxLayout) 无法按预期工作

java - 哪里可以下载适用于 Windows 的 jdk 1.4.2

php - Laravel 从 php 输出缓冲区下载文件 VS。私有(private)存储文件夹|安全

php - 尝试通过 PHP/MySQL 下载 Blob

java - Spring 4泛型类,获取参数化类型