从 Java 代码执行 Shell 脚本

发布于 2024-10-21 02:13:37 字数 289 浏览 0 评论 0原文

我有一个 gui,它的按钮为“安装到服务器”....我有 ubuntu 客户端和服务器系统...当我单击安装按钮时,它应该安装到服务器文件夹... 例如,一个文件夹名称“OUTPUT”位于服务器中..在客户端计算机文件夹中是“OUTPUT FILES”...通过linux命令我可以从客户端文件夹“OUTPUT FILES”挂载服务器“OUTPUT”文件夹.... 但是,在java中,当我按下挂载按钮时,它应该挂载服务器“OUTPUT”文件夹..我应该需要任何shellscript代码吗?...怎么办? 以及如何获取服务器系统IP地址?...有人可以帮助我吗?

I have the gui which have the button as "mount to server"....am having the ubuntu client and server system.....When I click the mount button ,it should mount to server folder...
for example, one folder name "OUTPUT" is in the server..in client machine folder is "OUTPUT FILES"...through linux command i can mount the server "OUTPUT" folder from client folder "OUTPUT FILES"....
But , in java when i press the mount button, it should mount the server "OUTPUT" folder..should i need any shellscript code?...how to do?
and how to get the server system ip address?...can u plz anyone help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

心在旅行 2024-10-28 02:13:37

您可以编写 shell 脚本将服务器文件夹安装到客户端的文件系统上。一旦你完成了这个工作,你就可以使用 Runtime 类从 Java 代码执行这个 shell 脚本。

    String IPAddress = "...";
    String script= "/path/to/your/script.sh";
    String[] cmd = {script, IPAddress};
    Runtime rt = Runtime.getRuntime();
    rt.exec(cmd);

You can write a shell script to mount the server folder onto your client's filesystem. Once you have that working, you can just execute this shell script from Java code using Runtime class.

    String IPAddress = "...";
    String script= "/path/to/your/script.sh";
    String[] cmd = {script, IPAddress};
    Runtime rt = Runtime.getRuntime();
    rt.exec(cmd);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文