最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
可以输入参数的Java调shell实例代码
时间:2022-06-29 00:43:53 编辑:袖梨 来源:一聚教程网
private boolean exec(String Cmd, String Input[])
{
boolean rc;
try
{
porc = Runtime.getRuntime().exec(Cmd);
pout = new PrintStream(new BufferedOutputStream(porc.getOutputStream()));
pin = new DataInputStream(new BufferedInputStream(porc.getInputStream()));
perr = new DataInputStream(new BufferedInputStream(porc.getErrorStream()));
if (Input != null)
{
for (int i = 0; i < Input.length; i++)
pout.println(Input[i]);
pout.flush();
}
while (perr.read() != -1) ;
Util.close(pout);
Util.close(pin);
rc = true;
}
catch (IOException e)
{
if (inDebug)
_log.warn((new StringBuilder("exec() ")).append(e.toString()).toString());
rc = false;
}
return rc;
}
相关文章
- 《异界事务所》光谱项链哪几种 06-30
- 《雾境序列》波比角色大全全解析 06-30
- 《星球重启》SSR宠物盲盒免费怎么获得 06-30
- 操作教程:常见的NFT被盗手段?为什么NFT玩家成为黑客目标? 06-30
- 拳皇97风云再起出招表-拳皇97风云再起技能招式表一览 06-30
- 鸣潮坎特蕾拉培养攻略-鸣潮坎特蕾拉培养材料一览 06-30