其他分享
首页 > 其他分享> > 字节输入流读取字节数据和字节输入流一次读取多个字节

字节输入流读取字节数据和字节输入流一次读取多个字节

作者:互联网

读取数据的原理(硬盘-->内存)
java程序-->JVM-->OS-->OS读取数据的方法-->读取文件
字节输入流的使用步骤:
1.创建FileInputStream对象,构造方法中绑定要读取的数据源
2.使用FileInputStream对象中的方法read,读取文件
3.释放资源

package com.yang.Test.IOStudy;

import java.io.FileInputStream;
import java.io.IOException;

public class InStudy01 {
    public static void main(String[] args) throws IOException {
        FileInputStream in = new FileInputStream("Document\\1.txt");
        int read = in.read();
        System.out.println(read);//97 a

        read = in.read();
        System.out.println(read);//98 b

        read = in.read();
        System.out.println(read);//99 c
        //int read()读取文件中的一个字节并且返回,读取到文件末尾返回-1
        read = in.read();
        System.out.println(read);//-1

        /**
         * 发现以上读取文件是一个重复的过程,所以可以使用循环优化
         * 不知道文件中有多少字节,使用while循环
         * while循环结束条件,读取到-1的使用结束
         */
        int len = 0;

        while ((len = in.read()) != -1) {
            System.out.println((char) len);
        }


        in.close();
    }
}

字节输入流一次读取多个字节

package com.yang.Test.IOStudy;

import java.io.FileInputStream;
import java.io.IOException;
import java.util.Arrays;

/**
 * 字节输入流一次读取多个字节的方法:
 * int read(byte b)从输入流中读取一定数量的字节,并将其存储在缓冲区数组b中。
 * 明确两件事情:
 * 1.方法的参数byte[]的作用?
 * 2.方法的返回值int是什么?
 *
 * String类的构造方法
 * String(byte[] bytes):把字节数组转换为字符串
 * String(byte[] bytes,int offset,int length)把字节数组的一部分转换为字符串 offset:数组的开始索引,length:转换的字节个数
 */
public class InStudy01 {
    public static void main(String[] args) throws IOException {
        //创建FileInputStream对象,构造方法中绑定要读取的数据源
        FileInputStream in = new FileInputStream("Document\\bbb.txt");
        //使用FileInputStream对象中的read读取文件
        //int read(byte[] b)从输入流中读取一定数量的字节,并将其存储在缓冲区数组b中

        byte[] bytes = new byte[2];
        int read = in.read(bytes);
        System.out.println(read);//2
        System.out.println(Arrays.toString(bytes));//[112, 97]
        System.out.println(new String(bytes));//pa

        in.close();
    }
}

标签:字节,read,int,println,FileInputStream,输入,读取
来源: https://www.cnblogs.com/ailhy/p/16476516.html