Java读取一个文本文件拼接成一个字符串(readFileToString)

Posted zj0208

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java读取一个文本文件拼接成一个字符串(readFileToString)相关的知识,希望对你有一定的参考价值。

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;

import org.junit.Test;

public class Demo {// 使用示例
    @Test
    public void testName1() throws Exception {
        String filePath = "D:\\测试数据\\测试数据.json";

        String jsonString = readFileToString(filePath);

        System.out.println(jsonString);

        System.out.println("done.....");
    }

    public static String readFileToString(String path) {
        // 定义返回结果
        String jsonString = "";

        BufferedReader in = null;
        try {
            in = new BufferedReader(new InputStreamReader(new FileInputStream(new File(path)), "UTF-8"));// 读取文件  
            String thisLine = null;
            while ((thisLine = in.readLine()) != null) {
                jsonString += thisLine;
            }
            in.close();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (in != null) {
                try {
                    in.close();
                } catch (IOException el) {
                }
            }
        }

        // 返回拼接好的JSON String
        return jsonString;
    }
}

 

以上是关于Java读取一个文本文件拼接成一个字符串(readFileToString)的主要内容,如果未能解决你的问题,请参考以下文章

读文本文件

Python读取文件内容的方法有几种

python 读取文本文件

java中有啥方法可以读取占位符的字符串,并且把占位符替换成参数

java中有啥方法可以读取占位符的字符串,并且把占位符替换成参数

我如何每行读取一个文本文件,然后将字符串分解成单个单词(分成一个树集)而不重复?