Eclipse 插件 - 如何从 Eclipse 插件执行 UNIX 命令?
我正在编写一个 Eclipse 插件,它将接受文件名的输入,将其传递给 UNIX 命令并获取输出(该命令是从 CVS 存储库获取输入文件名的文件路径)。我的基本插件代码正在开发中,但我没有找到任何有关如何从 eclipse 执行 UNIX 命令的信息。任何指示都会有帮助。
I am writing an eclipse plugin that will take input of a file name, pass that to a UNIX command and get the output back (The command is to get file path of entered file name from CVS repository). My basic plugin code is under development, but I am not finding any info on how can I execute UNIX commands from eclipse. Any pointers would be helpful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Runtime.exec Java 标准库中的 (...) 应该执行您执行 Eclipse 用户路径中的 UNIX shell 命令所需的操作。如果你想调用UNIX C库API,你可以使用JNA库。
Runtime.exec(...) from the Java standard library should do what you need to execute UNIX shell commands that are in your path of the user that is executing eclipse. If you want to call UNIX C libraries API you can use the JNA library.