Java FileInputStream read()方法

java.io.FilterInputStream.read(byte[] b) 用于从输入流中读取最多b.length个数据字节。

1 语法

public int read(byte[] b)

2 参数

b:目标缓冲区。

3 返回值

返回读取到缓冲区的总字节数;如果没有更多数据要读取,则返回-1。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 *  java.io.FilterInputStream.read(byte[] b)方法的例子
 */
import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.FilterInputStream;
import java.io.IOException;
import java.io.InputStream;

public class Demo {
    public static void main(String[] args) throws Exception {
        InputStream is = null;
        FilterInputStream fis = null;
        int i = 0;
        char c;
        byte[] buffer = new byte[6];

        try {
            // create input streams
            is = new FileInputStream("d://test.txt");
            fis = new BufferedInputStream(is);

            // returns number of bytes read to buffer
            i = fis.read(buffer);

            // prints
            System.out.println("Number of bytes read: "+i);

            // for each byte in buffer
            for(byte b:buffer) {

                // converts byte to character
                c = (char)b;

                // prints
                System.out.println("Character read: "+c);
            }

        } catch(IOException e) {
            // if any I/O error occurs
            e.printStackTrace();
        } finally {
            // releases any system resources associated with the stream
            if(is!=null)
                is.close();
            if(fis!=null)
                fis.close();
        }
    }
}

假设test.txt内容如下:

ABCDE

输出结果为:

Number of bytes read: 5
Character read: A
Character read: B
Character read: C
Character read: D
Character read: E

热门文章

优秀文章