📜  从java代码示例中的文本文件中读取

📅  最后修改于: 2022-03-11 14:52:42.236000             🧑  作者: Mango

代码示例2
public static void main(String[] args) throws Exception 
  { 
    // pass the path to the file as a parameter 
    FileReader fr = new FileReader("C:\\Users\\pankaj\\Desktop\\test.txt"); 
  
    int i; 
    while ((i=fr.read()) != -1) 
      System.out.print((char) i); 
  }