尝试将我的按钮附加到actionListener,以使用从另一个类/方法生成的用户输入的项目数的随机生成的新数组填充我的JTextArea。我可以让它部分运作,但不完全。
我可以通过让按钮创建一个全新的GUI窗口来实现这一点,但这不是我想要的,我只想用新生成的数组附加JTextArea。按原样,JTextArea显示数组的类infor和十六进制代码,而不显示任何其他内容。
功能:用户在一个框中输入一个整数,该框告诉方法填充数组的项目数,单击按钮,清除JTextArea后会出现随机生成的数组。
我猜测(希望)这是一个相当简单的问题。我已经从两个.java文件中放了所有适用的(我认为)代码。
Automobile.java:
//toString method override for formatting
@Override
public String toString() {
return String.format
(" %d\t\t%s\t\t%s\t\t%d\t%1.1fL", invID, make, model, doors, engineSize);
}// end method toString
//This method randomizes the array
public static Automobile[] makeRandom(int m) {
Automobile[] auto = new Automobile[m];
for (int i = 0; i < auto.length; i++) {
auto[i] = new Automobile();
auto[i].make = carMakes.get(randomGen.nextInt(carMakes.size()));
auto[i].model = carModels.get(randomGen.nextInt(carModels.size()));
auto[i].doors = randomGen.nextInt(6);
if(auto[i].doors == 0 || auto[i].doors == 1)
auto[i].doors = 2;
auto[i].engineSize = randomGen.nextDouble() * 6.0;
if(auto[i].engineSize <= 1.49)
auto[i].engineSize = 1.5;
} // end for method to instantiate
return auto;
} // end method makeRandom
//Main method for creating the GUI with default number of array entries
public static void main(String args[]) {
Automobile[] x = makeRandom(20);
GUI frame = new GUI(x);
frame.setVisible(true);
}
GUI.java
//Creates the GUI
public GUI(Automobile[] ia) {
this.autoArray = ia;
initComponents();
for (Automobile m : autoArray) {
mainTextArea.append(m.toString()+"\n");
}
Arrays.sort(autoArray);
mainTextArea.append("\n\n---- Sorted By Make -----\n");
for (Automobile m : autoArray) {
mainTextArea.append(m.toString() + "\n");
}
mainTextArea.append("\n\n---- Sorted By Model -----\n");
Automobile.sortBy = Automobile.SORTBY.MODEL;
Arrays.sort(autoArray);
for (Automobile m : autoArray) {
mainTextArea.append(m.toString() + "\n");
}
mainTextArea.append("\n\n---- Sorted By Doors -----\n");
Automobile.sortBy = Automobile.SORTBY.DOORS;
Arrays.sort(autoArray);
for (Automobile m : autoArray) {
mainTextArea.append(m.toString() + "\n");
}
mainTextArea.append("\n\n---- Sorted By Engine Size -----\n");
Automobile.sortBy = Automobile.SORTBY.ENGINESIZE;
Arrays.sort(autoArray);
for (Automobile m : autoArray) {
mainTextArea.append(m.toString() + "\n");
}
}//End GUI constructor
//Method for the button click action
private void randomizeButtonActionPerformed(java.awt.event.ActionEvent evt) {
int number = Integer.parseInt(numCarsTextField.getText());
mainTextArea.setText(null);
Automobile[] x = makeRandom(number);
mainTextArea.append(x.toString());
}
非常感谢一些指导。
谢谢!
添加一些我试过的代码,由@Hovercraft Full Of Eels建议,这是一种新方法,但我甚至不确定如何处理它,我真的很感激-depth help here:
public void appendAutos(Automobile[] cars){
this.autoArray = cars;
initComponents();
for (Automobile m : autoArray) {
mainTextArea.append(m.toString()+"\n");
}
Arrays.sort(autoArray);
mainTextArea.append("\n\n---- Sorted By Make -----\n");
for (Automobile m : autoArray) {
mainTextArea.append(m.toString() + "\n");
}
mainTextArea.append("\n\n---- Sorted By Model -----\n");
Automobile.sortBy = Automobile.SORTBY.MODEL;
Arrays.sort(autoArray);
for (Automobile m : autoArray) {
mainTextArea.append(m.toString() + "\n");
}
mainTextArea.append("\n\n---- Sorted By Doors -----\n");
Automobile.sortBy = Automobile.SORTBY.DOORS;
Arrays.sort(autoArray);
for (Automobile m : autoArray) {
mainTextArea.append(m.toString() + "\n");
}
mainTextArea.append("\n\n---- Sorted By Engine Size -----\n");
Automobile.sortBy = Automobile.SORTBY.ENGINESIZE;
Arrays.sort(autoArray);
for (Automobile m : autoArray) {
mainTextArea.append(m.toString() + "\n");
}
}
private void randomizeButtonActionPerformed(java.awt.event.ActionEvent evt) {
int number = Integer.parseInt(numCarsTextField.getText());
mainTextArea.setText(null);
appendAutos(Automobile[]);
我不确定返回类型应该是什么,或者如何将用户输入的数字传递给方法,因为建议该方法接受数组类型。
答案 0 :(得分:1)
简单:为GUI提供setAutos(Automobile[] cars)
或appendAutos(...)
方法,并在此方法中调用当前在构造函数中执行的自动显示代码。然后在actionPerformed方法中调用该方法。