json

formatting array into plist.

I have a JSON return being formatted and saved into a plist, it looks like the following: I need it to have the following format: I'm missing something in the saving of the array so I can add the "Rows" below the Root and "Item 0, etc" under the profile, any ideas? Here is my code: NSURL *url = [NSURL URLWithString:@"http://1...

Whether to use SQL , XML/JSON ?

After doing my exercise in school, I use Sqlite to store my data. But there's XML / JSON [ I haven't tried yet, but I prefer JSON because its' simplicity ], they're used to store data too. And they seems popular, there's JSON for C#,C++,py .... I wonder when to use these ones ? And I'm happy to hear about theirs performance too, I care...

how to Convert string into Json using Newton Json library

Hi, sorry for the silly question, but i am stuck converting for example the following result from a method into Json public string Test(string input) { return "Name:"+input; } to look like this {"Name":"Mike"} thanks in advanced Update: Darin fixed first problem now i am using this way but it is not working String...

JSON and jqGrid. What is "userdata" ?

I'm having trouble understanding what all of the fields in a JSON datasource for a jqGrid means and I am not seeing any documentation for it anywhere. The example I'm trying to understand is this: http://www.trirand.com/blog/jqgrid/jqgrid.html and then the first example under "JSON Data" The JSON data can be accessed here: http://www...

REST resource with a List property

I'd like some feedback on my current architecture. I have a "Person" resource that is available through GET and PUT requests to: /users/people/{key}. The resource produces and accepts "Person" objects in JSON format. This is an example of the JSON that GET /users/people/{key} might return: { "age":29, "firstName":"Chiquita", "phon...

Python 2 vs. Python 3 - urllib formats

I'm getting really tired of trying to figure out why this code works in Python 2 and not in Python 3. I'm just trying to grab a page of json and then parse it. Here's the code in Python 2: import urllib, json response = urllib.urlopen("http://reddit.com/.json") content = response.read() data = json.loads(content) I thought the equiv...

Builtin Query Capabilities in JSON using Javascript or JQuery

Hi, I am looking query the JSON data based on some where conditions for ex. list the person names whose cell no is 777-777-7777. pl let me know what are query capabilities in JSON. var json = [{ "name": "senthil", "Phoneno": [{ "Home": "111-111-1111" }, { "Cell": "222-222-2222" }, { "...

How to get JQuery to accept a JSON reply?

Hi all, Here's some simple Javascript: (function($){ var ajax_callback = function(data) { window.location.hash = data.h1; }; $('.clickable').live('click', function() { $.post('server.fcgi', {}, ajax_callback, 'json'); } ); })(jQuery); The server is a c++ binary (yes, i know) that spits out (through...

Changing default date printing format in python

Can I change the default __str__() function of the datetime.datetime object? By default, it returns something like '2010-06-28 12:43:56.985790', and i need it to print something like '2010-06-28T12:44:21.241228'(which is the isoformat() function). I need this for JSON serializing of a django model. My model is: class Transport(model...

Using Spring and Jackson to Render JSON without affecting all Views

http://stackoverflow.com/questions/3121252/spring-mvc-ajax-and-json-using-custom-view-resolver-and-custom-view Here I've gotten a view to display JSON by adding ".json" to the end of a URL, but using this method a visitor to the site can just put .json at the end of any URL they please and often it will result in an exception that gives...

Cleaning strings to be valid JSON values

I want to clean strings that are retrieved from a database. I ran into this issue where a property value (a name from a database) had an embedded TAB character, and Chrome gave me an invalid TOKEN error while trying to load the JSON object. So now, I went to http://www.json.org/ and on the side it has a specification. But I'm having...

Get Facebook Status from Fan Page using API

I've been trying to get the most recent Facebook Status for a fan page via the API for a while now and can't seem to get what I'm after. I'm really trying to avoid using RSS for it. I can get the full list from the feed via https://graph.facebook.com/174690270761/feed but I want only the last status posted by the page admin, not by anyon...

How do you format data for a dijit.form.Select?

What are the requirements for formatting a 'store' used by a dijit.form.Select? Currently i'm pulling a json style db (backend is a mongoStore) and using THE SAME DB in a dojox.data.DataGrid and a dijit.form.Select. I set the db as the 'store' attribute for both, and for the datagrid it works perfectly (after specificying the layout). ...

Does HTML need to be encoded when passed back in JSON?

When passing HTML back through a response in JSON format, does it need to get encoded? ...

Very large HTTP request vs many small requests

I need a 2D array(as Json) to be sent from server to client. It would be around 400X400 in size with each entry around 4 characters of text. So that makes it around 640KB of data. Which of the following extreme approaches is better ? 1) I make a large HTTP request of all the data at one go. 2) I make 400 requests - each asking for a si...

Very large HTTP request vs many small requests

Possible Duplicate: Very large HTTP request vs many small requests I need a 2D array(as Json) to be sent from server to client. It would be around 400X400 in size with each entry around 4 characters of text. So that makes it around 640KB of data. Which of the following extreme approaches is better ? I make a large HTTP requ...

Nested JSONObject

Hi! I am having several problems with JSONObjects and JSONArray. I would like to parse this json file: [{ "SourceFile": "AndresIniesta.flv", "ExifTool": { "ExifToolVersion": 8.22 }, "System": { "FileName": "AndresIniesta.flv", (...) }, "File": { "FileType": "FLV", "MIMEType": "video/x-flv" }, "Flash":...

ASP.NET MVC Ajax Actions results enveloping

Hello, I would like to have every result of any AJAX call on ASP.NET MVC to be enveloped to a JSON object which should be like: AjaxResult { status, data } where status will contain a enumeration value describing if the call was successful, erroneous, authentication expired etc. This will enable client side code to be able to redir...

How to avoid null values serialization in HashMap?

I would like to serialize a HashMap as a string through the Jackson JSON processor. For example: String strMap = getMapper().writeValueAsString(myHashMap); result output -> {"r_id":6,"a_am":null,"smb":"Submit","a_li":null,"l_id":878,"pos":[1345,1346,1347]} I don't know how to disable null values serialization for Map. It works fine on...

How to deserialize and cast to Long all numbers?

The Jackson deserialize and cast to Integer all numbers if value in range of Integers instead it cast to Long. I would like to cast ALL values to Long. Is it exist easy solution of issue? ...