本文主要是介绍字节流转换成字符流,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;public class TransStreamDemo {public static void main(String[] args) throws IOException {InputStream in = System.in;// 字节流 -->字符流InputStreamReader isr = new InputStreamReader(in);// 使用缓冲区BufferedReader bufr = new BufferedReader(isr);String line = null;while ((line = bufr.readLine()) != null) {if ("over".equals(line))break;System.out.println(line);}bufr.close();}
}
这篇关于字节流转换成字符流的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!