码迷,mamicode.com
首页 > 编程语言 > 详细

Java:获取文件内容

时间:2018-06-05 14:08:08      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:int   htm   erro   ring   input   read   html   stack   opera   

文章来源:https://www.cnblogs.com/hello-tl/p/9139353.html

import java.io.*;
public class FileBasicOperation {
      /**
	 * 获取文件内容
	 * @param filePath
	 * @return
	 */
	@SuppressWarnings("resource")
	public String getFileContent(String filePath){
		try {
            File file = new File(filePath);
            if (file.isFile() && file.exists()) {
                InputStreamReader read = new InputStreamReader(new FileInputStream(file), "UTF-8");
                BufferedReader bufferedReader = new BufferedReader(read);
                String lineTxt = bufferedReader.readLine();
                while (lineTxt != null) {
                    return lineTxt;
                }
            }else{
            	return "There is no file";
            }
        } catch (UnsupportedEncodingException | FileNotFoundException e) {
            System.out.println("Cannot find the file specified!");
            e.printStackTrace();
        } catch (IOException e) {
            System.out.println("Error reading file content!");
            e.printStackTrace();
        }
        return null;
	}
}   

文章来源:https://www.cnblogs.com/hello-tl/p/9139353.html

Java:获取文件内容

标签:int   htm   erro   ring   input   read   html   stack   opera   

原文地址:https://www.cnblogs.com/hello-tl/p/9139353.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!