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();
}
}
}
|
|