Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 Java 代码中为在同一台 Win7 机器上运行的不同应用程序以编程方式生成鼠标点击。该进程是已知的(指向进程的指针)。我可以为此使用 API 或应用程序吗?
这是定制测试框架的 GUI 部分所需要的。
java.awt.Robot班级是你的朋友。您可以使用它生成鼠标和键盘输入。
java.awt.Robot
看看这个教程。
Javadoc