黑马程序员技术交流社区

标题: IO [打印本页]

作者: Java黑马    时间: 2015-7-5 18:33
标题: IO
I\O流
InputStream类:字节输入流的抽象类,是所有字节输入流的父类。
public class InputStreamDemo {
public static void main(String[] args) {
InputStream in=System.in;
byte[] buf=new byte[1024];
try {
int len=in.read(buf);
String s=new String(buf);
System.out.println(s);
in.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
OutputStream类:字节输出流的抽象类,是所有字节输出流的父类。
public class OutputStreamDemo {
public static void main(String[] args) {
OutputStream out=System.out;
byte[] buf="字节输出流".getBytes();
try {
out.write(buf);
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}






欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2