この記事は、Java で Robot を使用してマウスとキーボードを制御する方法の詳細な分析と紹介です。必要な友達は参考にしてください。
マウスとキーボードの制御には Java.awt.Robot クラスが使用されます。 このコントロールを取得すると、Java コードを通じてマウスとキーボードを使用してあらゆる種類の操作を実行できるようになります。このクラスは通常、自動テストに使用されます。次のコード サンプルは、ロボット クラスがキーボード イベントを処理する方法を示しています。このコードを実行してメモ帳を開くと、メモ帳に HI CAOER が表示されます。試してみてください。
コードは次のとおりです:
import java.awt.AWTException;import java.awt.Robot;import java.awt.event.KeyEvent;public class RobotExp {public static void main(String[] args) {try {Robot robot = new Robot();//定义5秒的延迟以便你打开notepad // Robot 开始写robot.delay(5000);robot.keyPress(KeyEvent.VK_H);robot.keyPress(KeyEvent.VK_I);robot.keyPress(KeyEvent.VK_SPACE);robot.keyPress(KeyEvent.VK_C);robot.keyPress(KeyEvent.VK_A);robot.keyPress(KeyEvent.VK_O);robot.keyPress(KeyEvent.VK_E);robot.keyPress(KeyEvent.VK_R);} catch (AWTException e) {e.printStackTrace();}}}
ネチズンは上記のコードを改良しました:
コードは次のとおりです:
import java.awt.AWTException; import java.awt.Robot; import java.awt.event.KeyEvent; import java.io.IOException; public class RobotExp { public static void pressKey(Robot robot, int keyvalue) { robot.keyPress(keyvalue); robot.keyRelease(keyvalue); } public static void pressKeyWithShift(Robot robot, int keyvalue) { robot.keyPress(KeyEvent.VK_SHIFT); robot.keyPress(keyvalue); robot.keyRelease(keyvalue); robot.keyRelease(KeyEvent.VK_SHIFT); } public static void closeApplication(Robot robot) { // pressKey(robot, KeyEvent.VK_ALT); // pressKey(robot, KeyEvent.VK_F4); robot.keyPress(KeyEvent.VK_ALT); robot.keyPress(KeyEvent.VK_F4); robot.keyRelease(KeyEvent.VK_ALT); robot.keyRelease(KeyEvent.VK_F4); //for linux. // robot.keyPress(KeyEvent.VK_ALT); // robot.keyPress(KeyEvent.VK_W); // robot.keyRelease(KeyEvent.VK_ALT); // robot.keyRelease(KeyEvent.VK_W); robot.keyPress(KeyEvent.VK_N); robot.keyRelease(KeyEvent.VK_N); } public static void main(String[] args) throws IOException { try { Robot robot = new Robot(); Runtime.getRuntime().exec("notepad"); // For linux. //Runtime.getRuntime().exec("gedit"); //定义5秒的延迟以便你打开notepad 哈哈 // Robot 开始写 robot.delay(3000); for (int i = 0; i < 100; i++) { pressKeyWithShift(robot, KeyEvent.VK_H); pressKey(robot, KeyEvent.VK_I); pressKey(robot, KeyEvent.VK_SPACE); //pressKeyWithShift(robot, KeyEvent.VK_H); pressKeyWithShift(robot, KeyEvent.VK_I); pressKey(robot, KeyEvent.VK_SPACE); pressKey(robot, KeyEvent.VK_A); pressKey(robot, KeyEvent.VK_M); pressKey(robot, KeyEvent.VK_SPACE); pressKey(robot, KeyEvent.VK_T); pressKey(robot, KeyEvent.VK_H); pressKey(robot, KeyEvent.VK_E); pressKey(robot, KeyEvent.VK_SPACE); pressKey(robot, KeyEvent.VK_J); pressKey(robot, KeyEvent.VK_A); pressKey(robot, KeyEvent.VK_V); pressKey(robot, KeyEvent.VK_A); pressKey(robot, KeyEvent.VK_SPACE); pressKey(robot, KeyEvent.VK_R); pressKey(robot, KeyEvent.VK_O); pressKey(robot, KeyEvent.VK_B); pressKey(robot, KeyEvent.VK_O); pressKey(robot, KeyEvent.VK_T); // VK_ENTER pressKey(robot, KeyEvent.VK_ENTER); //pressKey(robot, KeyEvent.); } closeApplication(robot); //robot.keyPress(KeyEvent.VK_SPACE); } catch (AWTException e) { e.printStackTrace(); } } }
以上がJava Robot は、マウスとキーボードを制御するためのコード例を実装します。の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。