java笔记__读取文件内容

2022/8/4 1:23:04

本文主要是介绍java笔记__读取文件内容,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

    public JSONObject toGetFileData(Integer model){
        //用于存储文件内容
        String jsonString = "";
        InputStream is = null;
        try {
            is = new FileInputStream("D:\\data\\xxxxx.txt");
            //用来保存每行读取的内容
            String line = null;
            BufferedReader reader = new BufferedReader(new InputStreamReader(is));
            //读取第一行
            line = reader.readLine();
            //如果line为空说明读完了
            while (line != null) {
                //将读到的内容添加到 jsonString 中
                jsonString += line;
                //添加换行符
                jsonString += "\n";
                //读取下一行
                line = reader.readLine();
            }
            reader.close();
            is.close();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        JSONObject jsonObject = JSONObject.parseObject(jsonString);
        return jsonObject;
    }

 



这篇关于java笔记__读取文件内容的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程