Java教程

JAVA 字符流读数据的两种方式 146

本文主要是介绍JAVA 字符流读数据的两种方式 146,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;

public class InputStreamReaderDemo {
    public static void main(String[] args) throws IOException {
        InputStreamReader isr = new InputStreamReader(new FileInputStream("1.txt"));
        int ch;
        while ((ch=isr.read())!=-1){
            System.out.println((char)ch);
        }
        System.out.println("====分割符号======");
        //第二种 读一个字符素组
        char[] chs = new char[1024];
        int len;
        while ((len= isr.read(chs)) !=-1 ){
            System.out.println(new String(chs,0,len));
        }
        isr.close();
    }
}

 

这篇关于JAVA 字符流读数据的两种方式 146的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!