Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个命令(实际上它是一个 Hadoop 作业命令,例如)“hadoop jar”,需要在我知道其 IP 地址的服务器上运行。
如何从我的 java 代码中调用命令?
谢谢阿布舍克 S
实现另外两个应用程序,第一个在服务器上运行并启动您的命令,第二个在客户端运行并通过网络套接字连接向服务器发送命令。服务器应用程序接收客户端请求并在服务器主机上运行所需的命令行。
要在本地主机上执行命令(对于服务器端应用程序),请使用Runtime 类及其exec()方法。
exec()