我们正在为残疾人制作模拟器。此应用程序中有一个桌面区域,我们正在测试。如何以编程方式生成1个鼠标单击并在键盘单击后立即生成?点击之间的时间为100毫秒。
修改
这是您建议的代码。
import java.awt.Robot;
import java.io.Console;
import javax.swing.Timer;
public class Start {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Timer timer = new Timer(100, new ActionListener() {
private final Robot robot = new Robot();
public void actionPerformed(ActionEvent evt) {
robot.mousePress(1);
robot.mouseRelease(1);
robot.keyPress(KeyEvent.VK_A);
robot.mouseMove(55, 145);
}
});
}
}
快照中显示了5个错误。
答案 0 :(得分:4)
查看Robot
类,可用于以编程方式生成鼠标单击和键盘敲击。您可以将此与Swing Timer
类结合使用,以定期生成这些事件; e.g。
Timer timer = new Timer(100, new ActionListener() {
private final Robot robot = new Robot();
public void actionPerformed(ActionEvent evt) {
robot.mousePress(1);
robot.mouseRelease(1);
robot.keyPress(KeyEvent.VK_A);
}
});
答案 1 :(得分:0)
查看Robot class。