我很抱歉询问可能是一个非常简单的问题,但我的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,并说它无法解析为类型。
答案 0 :(得分:1)
您必须导入java.awt.AWTException
。将其添加到导入列表或使用Ctrl + Shift + O
让Eclipse为您完成。