当前位置: 技术问答>java相关
如何让windows中的程序自动执行?(就像自动演示,robot)
来源: 互联网 发布时间:2015-06-18
本文导语: 请问各位高手,如何将windows中的程序自动执行,就像自动演示(相当于robot类型) 比如象新建文件用ctrl+N,但是怎么用程序实现。(不光指新建还有别的。) | java.awt Class Robot java.lang.Object | +...
请问各位高手,如何将windows中的程序自动执行,就像自动演示(相当于robot类型)
比如象新建文件用ctrl+N,但是怎么用程序实现。(不光指新建还有别的。)
比如象新建文件用ctrl+N,但是怎么用程序实现。(不光指新建还有别的。)
|
java.awt
Class Robot
java.lang.Object
|
+-java.awt.Robot
public class Robot
extends Object
This class is used to generate native system input events for the purposes of test automation, self-running demos, and other applications where control of the mouse and keyboard is needed. The primary purpose of Robot is to facilitate automated testing of Java platform implementations.
使用这个类完全可以满足你的要求
Class Robot
java.lang.Object
|
+-java.awt.Robot
public class Robot
extends Object
This class is used to generate native system input events for the purposes of test automation, self-running demos, and other applications where control of the mouse and keyboard is needed. The primary purpose of Robot is to facilitate automated testing of Java platform implementations.
使用这个类完全可以满足你的要求
|
不知你是想用java自动运行windows程序,还是想写一个windows的程序自动运行?
如果是后者,不知你要用哪种语言?
如果是前者,我觉得不太实际,为什么要这么做?
如果是后者,不知你要用哪种语言?
如果是前者,我觉得不太实际,为什么要这么做?