39

I will be using a local JSON file with some data. My question is where is the best/proper way to store the file and how should I access it and it's contents?

I have worked with json through http before but not a local one.

user3658609
  • 539
  • 2
  • 6
  • 14

1 Answers1

47

There are so many ways,

For basic JSON parsing, Android's in-built JSONObject should work - https://developer.android.com/reference/org/json/JSONObject.html

For more advanced JSON parsing (json-java mapping), you can look at GSON library - https://code.google.com/p/google-gson/

Community
  • 1
  • 1
ranjk89
  • 1,380
  • 16
  • 21