简体   繁体   English

更新JList组件

[英]Updating JList Components

I have a JProgressBar on a JPanel as a JList components.The JList components are supposed to update the JProgressBar in every two seconds.But the problem is, I don't know how to pass the value of progress into the JProgressBar. 我在JPanel上有一个JProgressBar作为JList组件。JList组件应该每两秒钟更新一次JProgressBar。但是问题是,我不知道如何将progress的值传递给JProgressBar。 here is my code 这是我的代码

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class download {
    download(){}
}
class myPanelListCellRenderer extends DefaultListCellRenderer{
    private static final long serialVersionUID = 1L;
    private JPanel downloadPanel,labelStack;
    private JProgressBar downloadProgress;
    private JLabel fileTypeIconLabel,fileNameLabel,downloadInfoLabel,freeLabel;
    public myPanelListCellRenderer(){
        setLayout(null);
        downloadPanel=new JPanel(new BorderLayout(10,20));
        labelStack=new JPanel(new GridLayout(0,1,2,2));
        downloadProgress=new JProgressBar() {
            @Override
            public Dimension getPreferredSize() {
                Dimension d = super.getPreferredSize();
                return new Dimension(400,d.height);
            }
        };
        fileTypeIconLabel=new JLabel("test", SwingConstants.CENTER);
        fileNameLabel=new JLabel("fileNameLabel", SwingConstants.CENTER);
        downloadInfoLabel=new JLabel("downloadInfoLabel", SwingConstants.CENTER);
        freeLabel=new JLabel("freeLabel", SwingConstants.CENTER);
        fileTypeIconLabel.setFont(fileTypeIconLabel.getFont().deriveFont(60f));
        labelStack.add(fileNameLabel);
        labelStack.add(downloadInfoLabel);
        labelStack.add(downloadProgress);
        labelStack.add(freeLabel);  
        labelStack.setOpaque(false);
        downloadPanel.add(fileTypeIconLabel,BorderLayout.LINE_START);
        downloadPanel.add(labelStack,BorderLayout.CENTER);
    }
    @Override
    public Component getListCellRendererComponent(JList<?> list,Object value,int index,boolean isSelected,boolean cellHasFocus) {
        JLabel l = (JLabel) super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
        downloadPanel.setBackground(l.getBackground());
        fileTypeIconLabel.setText("" + (index + 1));
        return downloadPanel;
    }
}

public class JListPanel implements ActionListener{
    private JPanel btnPanel;
    private JButton jbtAdd,jbtDelete;
    private JFrame jf;
    private download dl;
    DefaultListModel<download> myListModel;
    JList<download>myList;
    public JListPanel(){
        myListModel=new DefaultListModel<download>();
        myList=new JList<download>(myListModel);
        myList.setCellRenderer(new myPanelListCellRenderer());
        myList.setVisibleRowCount(8);
        btnPanel=new JPanel();
        jbtAdd=new JButton("addJpanel");
        jbtDelete=new JButton("delJpanel");
        btnPanel.setLayout(new FlowLayout(FlowLayout.LEFT,1,1));
        btnPanel.add(jbtAdd);
        btnPanel.add(jbtDelete);
        jf=new JFrame("hello");
        for(int i=0;i<6;i++){
            dl=new download();
            myListModel.add(0, dl);
        }
        jf.setLocationByPlatform(true);
        jf.add(btnPanel,BorderLayout.NORTH);
        jf.add(new JScrollPane(myList),BorderLayout.CENTER);
        jbtAdd.addActionListener(this);
        jbtDelete.addActionListener(this);
        jf.pack();
        jf.setVisible(true);
        jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    }
    public static void main(String args[]){
        new JListPanel();
    }
    @Override
    public void actionPerformed(ActionEvent e) {
        // TODO Auto-generated method stub
        if(e.getSource()==jbtAdd){
            addMyPanel();
        }
        else if(e.getSource()==jbtDelete){
            delMyPanel();
        }
    }
    public void addMyPanel(){
        myListModel.add(0,new download());
    }
    public void delMyPanel(){
        int index = myList.getSelectedIndex();
        if (index < 0) {
            JOptionPane.showMessageDialog(
                    myList,
                    "Select a download to delete!",
                    "Select Download",
                    JOptionPane.ERROR_MESSAGE);
        } else {
            myListModel.removeElementAt(index);
        }
    }
}

Instead of passing the progress value to the JProgressBar directly, let the bar listen for changes from whatever process updates the list's data model. 不要将进度值直接传递给JProgressBar ,而要让进度条侦听来自更新列表数据模型的任何过程中的更改。 SwingWorker , seen here , is especially convenient for this, as the worker's setProgress() notifies listeners automatically. 在这里看到的SwingWorker对此特别方便,因为工作程序的setProgress()自动通知侦听器。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM