- 讲师:刘萍萍 / 谢楠
- 课时:160h
- 价格 4580 元
特色双名师解密新课程高频考点,送国家电网教材讲义,助力一次通关
配套通关班送国网在线题库一套
百度广告
完整的包下载路径,基本上封装了所有操作:http://download.csdn.net/source/2409950
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;
}
责编:罗莉
课程专业名称 |
讲师 |
课时 |
查看课程 |
---|
课程专业名称 |
讲师 |
课时 |
查看课程 |
---|
点击加载更多评论>>