JAVA编程Unicode译码器出现问题

代码如下,但结果提示ThetypeQueryFramemustimplementtheinheritedabstractmethodActionListener.acti... 代码如下,但结果提示
The type QueryFrame must implement the inherited abstract method ActionListener.actionPerformed(ActionEvent),新手求指导。
import java.awt.*;
import java.awt.event.*;
public class QueryFrame extends Frame implements ActionListener
{
private TextField text_char,text_uni;
private Button button_char,button_uni;
public QueryFrame()
{
super("Unicode字符查询器");
this.setBounds(300, 240, 280, 90);
this.setBackground(Color.lightGray);
this.setLayout(new GridLayout(2,3,2,2));
this.add(new Label("字符"),Label.RIGHT);
text_char=new TextField("汉字",10);
this.add(text_char);
button_char=new Button("查询Unicode码");
this.add(button_char);
button_char.addActionListener(this);
this.add(new Label("Unicode编码",Label.RIGHT));
text_uni=new TextField(10);
this.add(text_uni);
button_uni=new Button("查询字符");
this.add(button_uni);
button_uni.addActionListener(this);
this.addWindowListener(new WinClose());
this.setVisible(true);
}
public void actionPerformd(ActionEvent ev)
{
if(ev.getSource()==button_char)
{ String str=text_char.getText();
if(str.equals(""))
return;
char ch=str.charAt(0);
text_char.setText(""+ch);
text_uni.setText(""+(int)ch);
}
else if(ev.getSource()==button_uni)
{ String str=text_uni.getText();
if(str.equals(""))
return;
int uni=Integer.parseInt(str);
text_char.setText(""+(char)uni);
}
}
public static void main(String arg[]) { new QueryFrame(); }
}

下面是窗口的监听,没有问题,字数限制就不粘了。
求大神解答。
这是下面的
class WinClose implements WindowListener
{
public void windowClosing(WindowEvent ev)
{ System.exit(0);
}
public void windowOpened(WindowEvent ev) {}
public void windowActivated(WindowEvent ev) {}
public void windowDeactivated(WindowEvent ev) {}
public void windowClosed(WindowEvent ev) {}
public void windowIconified(WindowEvent ev) {}
public void windowDeiconified(WindowEvent ev) {}

}
大神可以在MyEclipse里看看。。。
展开
 我来答
百度网友12ee0fd
2014-06-06 · TA获得超过4.7万个赞
知道大有可为答主
回答量:1.1万
采纳率:66%
帮助的人:1957万
展开全部
public void actionPerformd(ActionEvent ev)
=》

public void actionPerformed(ActionEvent ev)
追问
没看懂什么意思大神,能具体说下哪里出现的问题么?
QueryFrame类继承出现问题了么?

按钮那儿好像没什么问题...
追答
拼写错误,导致ActionListener接口的方法没实现
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式