如何在我的Android应用程序中使用捆绑的json?

时间:2014-03-28 10:28:45

标签: android json

我需要在我的应用程序中使用捆绑的json。所以我在assets文件夹下添加了我的json文件。如何编写使用它的代码?请帮助......

1 个答案:

答案 0 :(得分:2)

首先需要从资产文件夹中读取你的json

    InputStream is = appContext.getAssets().open("myJson.json");
int size = is.available();
buffer = new byte[size];
is.read(buffer);
is.close();
String bufferString = new String(buffer);

然后你可以做

JSONObject obj = new JSONObject(bufferString);

现在obj包含您的json