zoukankan      html  css  js  c++  java
  • 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;
        }
    }
  • 相关阅读:
    集合及特殊集合arrayList
    二维数组、多维数组
    一维数组

    for循坏的穷举与迭代,while、do while循环
    1.兔子生兔子问题2.打印菱形3.求100以内质数的和
    for循环嵌套
    复习题
    循环语句
    分支语句
  • 原文地址:https://www.cnblogs.com/hedongfei/p/10552192.html
Copyright © 2011-2022 走看看