简体   繁体   中英

How to create an array of JLabels in Java to be printed to a JFrame

I m trying to make an array of labels. Each label has a differented value which come out of a function. I don't know the exact number of labels to be used. I mean there could be any number of values to be printed. Please help me do this.

easy just have one method return an array or some collection of JLabels and add all of them to your JComponent (eg a JPanel)

class MyPanel extends JPanel{

    public MyPanel(){
        super();
        showGUI();
    }

    private JLabel[] createLabels(){
        JLabel[] labels=new JLabel[10]
        for (int i=0;i<10;i++){
            labels[i]=new JLabel("message" + i);
        }
        return labels;
    }

    private void showGUI(){
        JLabel[] labels=createLabels();
        for (int i=0;i<labels.length();i++){
            this.add(labels[i]);
        }
    }
}

If possible, don't use separate JLabel s, but a JList , which will take care of layout and scrolling if necessary.

Java-Tutorial - How to us a List :

替代文字
(source: sun.com )

Are you kiddin ? Well, in case you're serious, first take a look at some of the Java APIs, like JLabel, JPanel, and some of the language elements.

Then you'll be able to do something like (I'm sure my code won't compile)

public static JPanel getLabels(int count) {
    JPanel panel = new JPanel(new FlowLayout());
    for(int i =0; i<count; i++) {
        panel.add(new JLabel(theFunctionThatCannotBeNamedHere(i)));
    }
    return panel;
}

Notice that theFunctionThatCannotBeNamedHere is the function you talked about.

You can actually make an array of any Swing Component, since every Swing Component is basically composite data type. Try this:

javax.swing.JTextField[] array = new javax.swing.JTextField[number_of_elements];

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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