所以我试图在Java中创建一个GUI。我是Java GUI的新手。所以这是我的代码:
private class thehandler implements ActionListener {
public void actionPerformed(ActionEvent event){//this is what is going to handle an event
String string = "";
if(event.getSource() == item1)//if they click enter on item1
string=String.format("field 1: %s", event.getActionCommand());
else if(event.getSource() == item2)//if they click enter on item2
string = String.format("field 2: %s", event.getActionCommand());
else if(event.getSource() == item3)//if they click enter on item3
string = String.format("field 3: %s", event.getActionCommand());
else if(event.getSource() == passField)//if they click enter on passField
string = String.format("Password field is: %s", event.getActionCommand());
}
}
我在string = String.format上遇到错误(“field 1:%s”,event.getActionCommand());和所有其他String.format行。它说“String类型中的方法格式(String,Object [])不适用于参数(String,String)”
我不知道如何解决这个问题。我刚刚下载了JRE和JDK 8,如果这有帮助的话。 谢谢!
答案 0 :(得分:1)
只需将其转换为字符串
即可event.getActionCommand().toString()
或者(没有stringFormat):
string="field 1:" + event.getActionCommand();
答案 1 :(得分:1)
您正在以错误的方式使用String.format()。要了解它应该如何使用(适用于您的用例),请参阅此问题(和答案):