当前位置: 技术问答>java相关
java 能写shell吗?如果能,怎么写呀?
来源: 互联网 发布时间:2015-06-10
本文导语: 类似于unix中的shell,不知道java怎样启动应用程序,vc中有winexec的函数,java有没有类似的方法? | 请参看http://www.csdn.net/Expert/TopicView1.asp?id=732947 | 比如: Process p= Runtime.getRunt...
类似于unix中的shell,不知道java怎样启动应用程序,vc中有winexec的函数,java有没有类似的方法?
|
请参看http://www.csdn.net/Expert/TopicView1.asp?id=732947
|
比如:
Process p= Runtime.getRuntime().exec("net send " + sWho + " " + sContent);
然后
OutputStream is = p.getOutputStream();
然后通过is 获取输出
你看看行不行
Process p= Runtime.getRuntime().exec("net send " + sWho + " " + sContent);
然后
OutputStream is = p.getOutputStream();
然后通过is 获取输出
你看看行不行
|
Runtime.exec