将json格式的数据保存到本地

时间:2025-04-04 08:58:17

1.创建jsonobject对象

JSONObject jsonObject = new JSONObject();

2.以键值的形式存储数据

(key, value);

3.将json格式的数据转化成字符串

jsonObject.toString

4.往本地写数据

//文件路径
String path = Environment.getExternalStorageDirectory().toString()
                + "/";
//判断文件是否存在
File file = new File(path);
        if (file.exists()) {
            Log.i("myTag", "文件存在");
        } else {
            try {
                file.createNewFile();
            } catch (IOException e) {
                e.printStackTrace();
            }
            Log.i("myTag", "文件创建成功");
        }

        try {
            FileOutputStream fileOutputStream = new FileOutputStream(file);
            fileOutputStream.write(jsonString.getBytes());
            // fileOutputStream.write(sbString.getBytes());
            fileOutputStream.close();
            Log.i("myTag", "json数据保存到成功!!!");
        } catch (Exception e) {
            e.printStackTrace();
        }