Java中的循环问题

时间:2013-08-07 13:12:09

标签: java arrays loops user-interface count

我正在制作一个简单的货币转换器GUI(没什么特别的),因为我将尝试在每次用户打开应用程序时合并实时汇率更新。在创建布局时,我决定简单地转换3种货币(英镑,美元和欧元)。我有2列中的相应标志,每列有3个标志之一。一列是供用户选择初始货币而另一列是要交换的所需货币;如下所示Basic layout with the flags in columns, 'From' and 'To'

我创建了一个String数组,其中包含单词“Pounds”,“Dollars”和“Euros”,我希望将这些标签放在标志的左侧(为了清晰起见,用户的应用程序并不是每个用户可能知道哪个货币属于哪个国家。

我创建了一个循环,它会创建一个标签,并将其分配到标志的左侧,它应该是一个“磅”标签,然后是“美元”,然后是“欧元”每次越过Y轴向南这样它们就会与标志对齐,然后它将重置数组计数以返回正确的字符串,沿x轴移动并再次重复。然而,它根本没有这样做,我得到的唯一结果是第一个英国国旗左边的文字“磅”;如下所示:

As you can see, i simply get one label

下面是我的代码,如果有人能看到为什么会发生这种情况。

这是将标志添加到面板的代码

    addToMain(GBP1, mainPage, 100,100,100,100); //alligns a United Kingdom Flag to left Column
    addToMain(GBP2, mainPage, 375,100,100,100); //alligns a United Kingdom Flag to right Column
    addToMain(USD1, mainPage, 100,200,100,100); //alligns a United States Flag to left Column
    addToMain(USD2, mainPage, 375,200,100,100); //alligns a United States Flag to right Column
    addToMain(EUR1, mainPage, 100,300,100,100); //alligns a European Union Flag to left Column
    addToMain(EUR2, mainPage, 375,300,100,100); //alligns a European Union Flag to right Column

这是应该在标志左侧添加文字标签的循环

    currencyName = new String [] {"Pounds", "Dollars", "Euros"};

    for(int i = 0; i <= 7; i++)
    {
        int count = 0; //declares a counter for the position in the currencyName array to grab the correct text for label
        xLabelAlign = 50;
        yLabelAlign = 100;

        if(count == 3)
          {
              count = 0; //resets to create both columns of labels in the application moves to the next column.
              xLabelAlign = 325;
              yLabelAlign = 100;
          }

          JLabel temp = new JLabel(currencyName[count]); //creates a new label and names it the string at position count
          temp.setFont(new Font("SERIF", Font.BOLD, 20));
          temp.setForeground(Color.WHITE);
          addToMain(temp, mainPage, xLabelAlign, yLabelAlign ,100,100); //adds it to the panel 

          yLabelAlign +=100; //moves position ready for the next text label.
          count++;  //grabs the next label in the currencyName string array.         

    }

这是向面板添加内容的方法。我已经使用set bounds方法将内容添加到面板中,这样我就可以将它们放在我想要的位置

  private void addToMain(JComponent c, JPanel p, int x, int y, int w, int h)
{
    c.setBounds(x,y,w,h);
    p.add(c);
}

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

快速解决方案:将int count = 0; xLabelAlign = 50; yLabelAlign = 100;移出for循环。循环范围为[0,5]。

良好的解决方案:Java layouts tutorial