Java:获取文件内容

Posted 小田吃饺子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java:获取文件内容相关的知识,希望对你有一定的参考价值。

文章来源: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:获取文件内容的主要内容,如果未能解决你的问题,请参考以下文章

从 XML 声明片段获取 XML 编码:部分内容解析不支持 XmlDeclaration

在 Android 片段中获取 Java.Lang.NullPointerException

java代码怎么获取properties文件的内容

Android获取各个应用程序的缓存文件代码小片段(使用AIDL)

Java itext为pdf 文件添加水印核心功能代码片段

片段(Java) | 机试题+算法思路+考点+代码解析 2023