问题
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.
回答1:
easy just have one method return an array or some collection of JLabels and add all of them to your JComponent (e.g. 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]);
}
}
}
回答2:
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)
回答3:
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.
回答4:
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];
来源:https://stackoverflow.com/questions/2712414/how-to-create-an-array-of-jlabels-in-java-to-be-printed-to-a-jframe