Eclipse 插件 - 如何从 Eclipse 插件执行 UNIX 命令?

发布于 2024-12-01 03:40:14 字数 143 浏览 1 评论 0原文

我正在编写一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

看透却不说透 2024-12-08 03:40:14

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文