大家好,
我需要知道,在我的项目中,如何使用java从这个"/data/user/0/com.example.foo/app_flutter"路径中的json文件中获取数据。
您的问题非常清楚,而且您的路径没有指向文件。然而,您是否尝试过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
});