程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> IO流中將字節流轉成字符流的方法,io中將

IO流中將字節流轉成字符流的方法,io中將

編輯:JAVA綜合教程

IO流中將字節流轉成字符流的方法,io中將


//字節流--->字符流
1.

public class TestIO {
 public static void main(String[] args) throws IOException {
  FileInputStream fis = new FileInputStream("c:/abc.txt");// 字節流
  InputStreamReader isr = new InputStreamReader(fis);// 字符流
  BufferedReader br = new BufferedReader(isr);// 緩沖流
  String str = null;
  if ((str = br.readLine()) != null) {
   System.out.println(str);
  }
  br.close();
  isr.close();
  fis.close();
 }

}

 2.

public class TestIO {
public static void main(String[] args) throws IOException {
FileReader fr = new FileReader("c:/abc.txt");
  BufferedReader br = new BufferedReader(fr);// 緩沖流
  String str = null;
  if ((str = br.readLine()) != null) {
   System.out.println(str);
  }
  fr.close();
  br.close();

 }

}

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved