Questions tagged [jsonparser]

Questions concerned with parsing JSON files using either built-in, third-party or custom built JSON parsers. Questions about implementing JSON parsers are valid too.

Questions concerned with parsing JSON files using either built-in, third-party or custom built JSON parsers. Questions about implementing JSON parsers are valid too.

607 questions
-3
votes
4 answers

Why can't read a .json?

I want to read a .json using library json-simple, my json file is: { "Subjects": { "subject1": "MIS", "subject2": "DBMS", "subject3": "UML" } } And my code is: import java.io.*; import java.util.*; import…
riram
  • 162
  • 6
-4
votes
1 answer

How to parse this type of json and set in UITableView cell

How to set this json in a tableView. { "page":0, "pageSize":5, "totalPageCount":16, "wkda":{ "020":"Abarth", "040":"Alfa Romeo", "042":"Alpina", "043":"Alpine", "057":"Aston Martin" } }
wdp
  • 23
  • 1
  • 4
-4
votes
1 answer

Unexpected Token in string version of valid JSON while performing JSON.parse

I am having problem converting a JSON String into Javascript object. I ran into a few suggestions which said that I should not be using multi-line string but using single line string too did not work. Snippet:…
Ankush
  • 1
  • 1
-4
votes
3 answers

How to parsing JSON like this?

I have json data format like { "status":200, "message":"ok", "response": {"result":1, "time": 0.0123, "values":[1,1,0,0,0,0,0,0,0] } } I want to get one value of values array and put it on textView in eclipse. Look my code in…
-4
votes
1 answer

I need to Parse this JSON in angular js and JavaScript

I need to parse this JSON in list structure like setup->Finantial Setup->Banks ->charge Item [ { "label_name": "Setup", "data": { "name": "Setup", "url": "/setup", "sub_menues": [ …
-5
votes
1 answer

How do I extract "last name" from my JSON response?

Can anyone tell me how to parse this JSON reponse? I need to extract "last name" from the services. { "Entity":{ "ID":1, "UserTypeID":1, "Code":"lPEq", "Services":[ { "ID":118, …
1 2 3
40
41