我必须创建一个程序来接受当天的用户输入和当天的降雨量。我有 3 个课程 - 降雨查看器、降雨图表和降雨框架。到目前为止,在 Rainfall Frame 中,我已经创建了 GUI,并设置了动作侦听器以将用户输入添加到 JTextArea。但是,它只列出一个输入,我需要它列出 31 天全部初始化为 0,然后在用户输入月份的日期和降雨量时进行更新。
/**
* Action listener class for reading in data and processing it
* when the Add reading button is clicked.
*/
class AddReadingListener implements ActionListener
{
public void actionPerformed(ActionEvent event)
{
// Fetch the new reading details
int newDay = Integer.parseInt(dayEntryField.getText());
double newRain = Integer.parseInt(rainEntryField.getText());
// Clear the input
dayEntryField.setText("");
rainEntryField.setText("");
dataArea.setText(newDay + ": " + newRain + " cm" + "\n");
}
}
目前,用户输入未存储在数组中。我在 Rainfall Chart 类中创建了数组。
/**
* Constructor: initializes the rainfall array to 0s.
*/
public RainfallChart()
{
rainfall = new double[32]; // 31+1 as will not use element 0
for(int i=0;i<rainfall.length;i++)
{
rainfall[i] = 0;
}
}
在程序结束时,我需要它在文本区域中绘制一个关于用户提交的值的条形图。目前我想知道如何将用户输入从 Rainfall Frame 类中的 JTextField 传输到 Rainfall Chart 类中的数组。
编辑:
在降雨框架类中创建数组 -
private void getArray()
{
int i;
int[ ] a = new int[32];
for(i=0;i<a.length;i++)
{
a[i] = Integer.parseInt(rainEntryField.getText());
}
}