所以我正在尝试用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("字段1:%s",event.getActionCommand())上得到一个错误;以及所有其他String.format行。它说"String类型中的方法格式(String,Object[])不适用于参数(String,String)"
我不知道怎么解决这个问题。我刚刚下载了JRE和JDK8,如果这有帮助的话。非常感谢。
只需将其转换为字符串
event.getActionCommand().toString()
或者(不带字符串格式):
string="field 1:" + event.getActionCommand();
您使用String.format()的方式不对。要了解它应该如何使用(适用于您的用例),请参阅以下问题(和答案):
如何使用java。Scala中的字符串格式?