在System类中提供了三个重定向标准输入/输出的方法
static void setErr(PrintStream err) 重定向“标准”错误输出流static void setIn(InputStream in) 重定向“标准”输入流static void setOut(PrintStream out)重定向“标准”输出流参考 http://blog.csdn.net/zhy_cheng/article/details/7891142
本文共 279 字,大约阅读时间需要 1 分钟。
在System类中提供了三个重定向标准输入/输出的方法
static void setErr(PrintStream err) 重定向“标准”错误输出流static void setIn(InputStream in) 重定向“标准”输入流static void setOut(PrintStream out)重定向“标准”输出流参考 http://blog.csdn.net/zhy_cheng/article/details/7891142
转载于:https://www.cnblogs.com/silvestris/p/5164144.html