Tagged Questions
2
votes
4answers
94 views
Parsing JSON : unexpected character
This question is related to a previous one I wrote here.
Is this JSON syntax correct ? I need it to make a jqPlot chart after.
...
1
vote
2answers
46 views
Parsing a json object which has many fields
I want to parse json from a server and place it into a class. I use json4s for this. The issue is that a json object contains too many fields, it's about 40-50 of them, some of them have the long ...
0
votes
3answers
46 views
Multi Level JSON with jQuery
I am trying to create some json that is a few levels deep, and I am having trouble in 2 places. The first, is getting the format correct. I also want to add a "level_two" to the data set.
The second ...
0
votes
0answers
21 views
Windows Store App: Performance of JSON parser
There are many possibilities to parse a JSON in context of a Windows Store App.
Regardless in which language (C#, JavaScript or C++).
For example: .NET 4.5 JsonObject and DataContractJsonSerializer, ...
1
vote
2answers
30 views
json-lift extract method not accessable
I am using json-lift that is compatible with scala 2.10 from lift-json but I do not seem to have access to the extract method. like this example :
import net.liftweb.json._
object testobject {
case ...
-1
votes
2answers
55 views
Parsing this JSON in android [closed]
I tried quite a lot but I am unable to parse this JSON in android.
could someone help?
[
"m",
["mapquest", "maps", "msn"],
["", "", ""],
[],
{
"type": ["KEY", "KEY", "KEY"],
...
1
vote
0answers
21 views
Parsing JSON object in Objective-C
Currently I have a JSON object, but when I parse the startLabel key paired element within VALUES, I return an nsdictionary with the first element being NULL and its keys being the values.
Here is the ...
-1
votes
1answer
49 views
JSON Parsing PHP [closed]
I have the following JSON format:
"also_known_as" : [ "Superman" ],
"business" : { "copyright_holder" : [ [ "Copyright MCMXLII Walt Disney Productions (on print)",
" Walt Disney ...
1
vote
1answer
26 views
Robust json parser in Python or Java
I'm looking for a robust json parser in either Python or Java (so far, I've been working with Python, but as I'm using it to analyze a Java benchmark, using Java is a reasonable alternative.)
Robust ...
0
votes
1answer
36 views
Loop through a multilevel JSON object having children of same name
I have a JSON object as follows.
{
"name":"Me",
"groups": [
{
"name":"My Garage",
"groups":[
{
"name":"My Cars",
...
0
votes
0answers
44 views
Internet Explorer's Native JSON.Parse
I am using JSON3 and in Internet Explorer the Parse method fails the feature tests (as discussed here), I am just wondering if someone could explain what impact it could have if I use JSON2, which ...
1
vote
2answers
54 views
Parse json with variable key
I just came up with challenging problem.
Below is json response where key is variable (a GUID)
How can I parse it? I've tried Google Gson, but that didn't work.
{
...
3
votes
4answers
2k views
Do JSON keys need to be unique?
The following question is related to a question that I had asked earlier: Help parsing simple JSON (using JSON for JAVA ME)
Do JSON keys need to be unique? For example, I was having trouble parsing ...
0
votes
1answer
22 views
VB & Rotten Tomatoes JSON API
I'm trying to allow a user to enter a film title into my program, then have the program return the top three matching films in the rotten tomatoes database.
Here's the code I have so far:
Private ...
0
votes
2answers
42 views
Create multiple layouts from JSON
I am attempting to parse a JSON response from a PHP file and then use the data to create a series of RadioButton, EditText, CheckBox, and DropDownMenu elements inside a layout. In other words a ...