我想在may代码中循环一个动作,它将一直重复直到progrmm关闭: 我认为这不是一件容易的事情,所以如果你帮助我,我会很高兴! :)
public static void main(String[] args) throws IOException, AWTException{
final Robot robot = new Robot();
robot.delay(2000);
//code to repeat
robot.mousePress(InputEvent.BUTTON1_MASK);
robot.delay(1);
}
}
答案 0 :(得分:2)
while(true)
{
robot.mousePress(InputEvent.BUTTON1_MASK);
robot.delay(1);
}
n
次:final int n = 1000;
for(int i = 0; i < n; i++)
{
robot.mousePress(InputEvent.BUTTON1_MASK);
robot.delay(1);
}