89

我有以下 json 文件。我想知道我应该将 json 文件放在我的项目中的哪个位置以及如何读取和存储它。

{
"aakash": [
    [  0.070020,0.400684],
    [  0.134198,0.515837],
    [  0.393489,0.731809],
    [  0.281616,0.739490]

],
"anuj": [
    [  1287.836667,-22.104523],
    [  -22.104523,308.689613],
    [  775.712801,-13.047385],
    [  -13.047385,200.067743]
]
}
4

1 回答 1

223

将该文件放在 assets 中

对于在 Android Studio 项目中创建的项目,您需要在主文件夹下创建 assets 文件夹。

将该文件读取为:

public String loadJSONFromAsset(Context context) {
        String json = null;
        try {
            InputStream is = context.getAssets().open("file_name.json");

            int size = is.available();

            byte[] buffer = new byte[size];

            is.read(buffer);

            is.close();

            json = new String(buffer, "UTF-8");


        } catch (IOException ex) {
            ex.printStackTrace();
            return null;
        }
        return json;

    }

然后你可以简单地string通过这个函数读取这个返回值

JSONObject obj = new JSONObject(json_return_by_the_function);

有关 JSON 的更多详细信息,请参阅 http://www.vogella.com/articles/AndroidJSON/article.html

希望你会得到你想要的。

于 2012-12-11T06:04:27.697 回答