Java 和宏项目
基本上,对于一个项目,我正在考虑制作一个带有图形用户界面的宏录制应用程序。它不必非常出色,只要基本实用即可。有java的宏api吗?理想情况下,我想使用java,这是我大部分有限的经验所在。如果没有那么可以推荐哪些其他语言?
我自己使用 Linux,并收到 xMacro 终端应用程序的警报。我喜欢的是用 GUI 进行基本的录制/播放。有什么想法吗?
Basically, for a project i'm thinking of making a macro recording application, with a gui. It doesn't have to be brilliant, just basically functional. Are there macro api's for java? Ideally i'd like to use java, its where most of my limited experience lies. If not then what other languages could be recommended?
I'm using linux myself and was alerted to the xMacro terminal app. what id like is the basic record/play of this with a gui. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了捕获 java 应用程序外部的操作,您需要使用 JNI,因为 Java 不提供适当的工具来执行此操作。所以你应该考虑用另一种语言来做这件事。
For capturing actions outside the java application, you will need to use JNI, since Java doesn't supply the appropriate tools to do that. So you should consider doing that in another language.