自己写的java记事本程序出现的错误:

错误:ThemethodshowDialog(Component,String,Color)inthetypeJColorChooserisnotapplicablefo... 错误:The method showDialog(Component, String, Color) in the type JColorChooser is not applicable for the arguments (new
ActionListener(){}, String, Color)

itemcolor.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
Color newColor=JColorChooser.showDialog(this,"调色板",text.getForeground());
if(newColor!=null)
{
text.setForeground(newColor);
}
}
});
展开
 我来答
Irreappearable
2012-04-07 · TA获得超过4956个赞
知道大有可为答主
回答量:1423
采纳率:25%
帮助的人:3124万
展开全部
我说你的代码就不能贴的格式正常点吗....

JColorChooser.showDialog 方法需要的第一正贺个举游派参数类型是Component, 你传了this,但是你现在在ActionListener的磨前匿名内部类中,所以这个this指的是ActionListener这个匿名类的对象,而不是你外部的GUI类

解决方法:
1. 在ActionListener的外部把this保存下来,然后用那个变量
2. 用类名.this,比如你外面的那个类叫MyPanel,那么就写MyPanel.this
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式