5月のコードでアクションをループしたいのですが、プログラムが閉じられるまで永遠に繰り返されます: それは簡単なことではないと思うので、助けていただければ幸いです! :)
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);
}
}