很抱歉问了一个可能很简单的问题,但我的 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 并说它不能被解析为一种类型。