本文介绍了java程序可以“输入”吗?进入另一个像记事本一样的Windows程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

无论如何都要从JAVA进程输入notepad.exe进程?

is there anyway to type into a notepad.exe process from a JAVA process?

推荐答案

是的,使用机器人是解决方案:

Yes, using the robot is the solution:

import java.awt.Robot;
import java.awt.event.KeyEvent;

public class Notepad {

    static int keyInput[] = { KeyEvent.VK_J, KeyEvent.VK_A, KeyEvent.VK_V,
            KeyEvent.VK_A, KeyEvent.VK_SPACE };

    public static void main(String[] args) throws Exception {

        Runtime.getRuntime().exec("notepad");

        Robot robot = new Robot();
        for (int i = 0; i < keyInput.length; i++) {
            robot.keyPress(keyInput[i]);
            robot.delay(100);
        }
    }
}

如果你想转换一个字符串到keyEvents检查此问题

if you want to convert a String to keyEvents check this question Convert String to KeyEvents

这篇关于java程序可以“输入”吗?进入另一个像记事本一样的Windows程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 16:21