猿问

下面这段程序有什么问题??

public static void read(String filePath) {
	  
	  try {
	    File file = new File(filePath);
	    if(file.isFile() && file.exists()) {
	      InputStreamReader isr = new InputStreamReader(new FileInputStream(file), "utf-8");
	      BufferedReader br = new BufferedReader(isr);
	      String lineTxt = null;
	      while ((lineTxt = br.readLine()) != null) {
	        System.out.println(lineTxt);
	      }
	      br.close();
	    } else {
	      System.out.println("文件不存在!");
	    }
	  } catch (Exception e) {
	    System.out.println("文件读取错误!");
	  }
}


MineDearm
浏览 1271回答 3
3回答

To_The_Moon

最后面少了个括号,然后br关流最好写在finally里。

紫薇北极大帝

没有错误,不明白你要表达什么。
随时随地看视频慕课网APP

相关分类

Java
我要回答