我需要知道,如何在我的项目中使用 java 从这个“/data/user/0/com.example.foo/app_flutter”路径中的 json 文件获取数据到“app_flutter”文件夹。
1 回答
慕村9548890
TA贡献1884条经验 获得超4个赞
你的问题很清楚,加上你的路径没有指向文件。但是,您是否尝试过 dart:io 读取文件,JSON.decode 将字符串解析为 json,
import 'dart:io';
import 'dart:convert';
// ...
new File('/data/user/0/com.example.foo/app_flutter/config.json')
.readAsString()
.then((fileContents) => JSON.decode(fileContents))
.then((jsonData) {
// do whatever you want with the data
});
添加回答
举报
0/150
提交
取消