在Android中读取json文件

我有以下的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] ] } 

将该文件放在资产中。

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

将该文件读取为

 public String loadJSONFromAsset() { String json = null; try { InputStream is = 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

希望你会得到你想要的

尝试这个:

 JSONObject obj = new JSONObject(yourjsonstring);