当前位置: 技术问答>java相关
如何用JAVA调用操作系统的命令呢?
来源: 互联网 发布时间:2015-09-16
本文导语: 比如在Linux下,添加用户等等! | Runtime.getRuntime().exec("ping 192.168.0.1"); | Process p = Runtime.getRuntime().exec("ping 192.168.0.1"); OutputStream os = p.getOutputStream(); ... p.waitFor() ; ... ...
比如在Linux下,添加用户等等!
|
Runtime.getRuntime().exec("ping 192.168.0.1");
|
Process p = Runtime.getRuntime().exec("ping 192.168.0.1");
OutputStream os = p.getOutputStream();
...
p.waitFor() ;
...
OutputStream os = p.getOutputStream();
...
p.waitFor() ;
...
|
看看JNI吧,应该能做到的。
|
AGREE
|
同意pentax() 的