0

很抱歉问了一个可能很简单的问题,但我的 google-fu 技能在这里让我失望了。我想做的就是让一个简单的机器人点击并输入内容。

到目前为止,这是我的整个班级:

import java.awt.Robot;
    public class Geniebot extends Robot {
        public Robot bot;
        //this is the actual robot

        public Geniebot(){
            try{
                Robot r = new Robot();
            }
            catch (AWTException e){
                throw new RuntimeException("something is wrong");
            }
        }

}

并且 eclipse 用红色强调 AWTException 并说它不能被解析为一种类型。

4

1 回答 1

2

您必须导入java.awt.AWTException. 将它添加到您的导入列表或使用Ctrl + Shift + O让 Eclipse 为您完成。

于 2013-07-02T22:05:58.967 回答