流和文件

处理输入输出的手段叫做流

流是输入输出的一种方式

流是一维,单方项的

public static void main(String[] args) {
    byte[] buffer = new byte[1024];
    try {
        int len = System.in.read(buffer);
        String s = new String(buffer, 0, len);
        System.out.println("读到了"+len+"个字节");
        System.out.println(s);
        System.out.println(s.length());
    } catch (IOException e) {
        e.printStackTrace();
    }
}

InputStream和OutputStream

读取 写入

分为字节流和字符流

文件

如果需要读取文件就需要使用文件流

FileInputStream

FileOutputStream

这两个可以实现文件的读写操作,在实际工程中已经较少使用

更常用的是在内存数据或通信数据上建立的流,数据库的二进制数据读写或网络端口通信

文件读写往往有更专业的类,配置文件和日志文件

byte[] buf = new byte[10];
for (int i = 0; i < buf.length; i++) {
    buf[i]= (byte) i;
}
try {
    FileOutputStream out = new FileOutputStream("a.dat");
    out.write(buf);
    out.close();
} catch (FileNotFoundException e) {
    e.printStackTrace();
} catch (IOException e) {
    e.printStackTrace();
}

在你项目中会生成一个文件

posted @ 2022-06-12 21:03  魔光领域  阅读(30)  评论(0编辑  收藏  举报