假设我有JSON文件,我想从中检索宠物。任何检索它们的代码都将受到赞赏。
JSON文件。
{
"age":100,
"name":"Hubble",
"pets":["Hunde","Katze","Fisch"]
}
因此,我发现此代码将JSON解析为String。最后它返回字符串,但重点是我无法得到字符串。它是我的JSON文件中的所有数据还是其他任何数据?
public static String jsonToStringFromAssetFolder(String fileName,Context context) throws IOException {
AssetManager manager = context.getAssets();
InputStream file = manager.open(fileName);
byte[] data = new byte[file.available()];
file.read(data);
file.close();
return new String(data);
}