从 Java 代码执行 Shell 脚本
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以编写 shell 脚本将服务器文件夹安装到客户端的文件系统上。一旦你完成了这个工作,你就可以使用 Runtime 类从 Java 代码执行这个 shell 脚本。
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.