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.
我正在使用 autohotkey 来自动化一些手动过程。我必须运行一个接受几个命令行参数的 java 命令行程序(.java)。
在自动化中执行一些预定义的任务后,我想从 autohotkey 运行这个 java 程序。
我该怎么做?
我认为这就是你要找的。在此示例中,我在 IE 中覆盖了公司默认搜索引擎。
#i::Run "C:\Program Files\Internet Explorer\iexplore.exe" http://www.google.com
基本上,将运行指针放在双引号和之后的参数之间。让我知道你是如何解决的。