JSON decoding not working
1 answer
Your 3.txt does not contain valid json. You need to adjust the sample string to be valid JSON by adding quotes around strings, commas between objects, and placing objects inside the containing array (or object). It should be something like this,
[{"address":"+6161616","body":"asda","date":"1231"},
{"address":"+616sdfs6","body":"as3sda","date":"155231"},
{"address":"+6161616","body":"asda","date":"123551"}]
+6
source to share