About 76,700 results
Open links in new tab
  1. what is the difference between json and xml - Stack Overflow

    The difference between XML and JSON is that XML is a meta-language/markup language and JSON is a lightweight data-interchange. That is, XML syntax is designed specifically to have no inherent …

  2. XML and JSON -- Advantages and Disadvantages? - Stack Overflow

    I recently heard about JavaScript Object Notation (JSON), and after looking it up, it seems like it's becoming rather popular as an alternative to the Extensible Markup Language (XML). I went on t...

  3. JSON and XML comparison - Stack Overflow

    Feb 1, 2011 · JSON Pro: Simple syntax, which results in less "markup" overhead compared to XML. Easy to use with JavaScript as the markup is a subset of JS object literal notation and has the same …

  4. javascript - When to prefer JSON over XML? - Stack Overflow

    Nov 28, 2008 · 82 I use JSON unless I'm required to use XML. It's simpler to understand, and (because it requires less configuration overhead) it's easier to program for reading and writing if the libraries …

  5. XML vs JSON. Which one is better for storing small chunk of data?

    Mar 1, 2013 · JSON is the best way to design any mobile application development, because parsing JSON is very light weight operation compare to XML. while XML parsing is always leads to complex …

  6. Why use XML(SOAP) when JSON so simple and easy to handle?

    Nov 30, 2011 · Receiving and sending data with JSON is done with simple HTTP requests. Whereas in SOAP, we need to take care of a lot of things. Parsing XML is also, sometimes, hard. Even …

  7. Is parsing JSON faster than parsing XML - Stack Overflow

    Also, (as pointed out in the linked question), JSON is generally more lightweight simply in terms of bytes, making it more efficient to transmit. Most likely, you'll get much more of a performance benefit from …

  8. How does JSON compare to XML in terms of file size and serialisation ...

    JSON Serialization: 5258 ms, XML Serialization: 3266 ms JSON Deserialization: 9582 ms, XML Deserialization: 4604 ms So XML serializes and deserializes faster using the libraries I'm using (see …

  9. google protocol buffers vs json vs XML - Stack Overflow

    Dec 25, 2012 · I would like to know the merits & de-merits of Google Protocol Buffers JSON XML I want to implement one common framework for two application, one in Perl and second in Java. So, …

  10. Java Serialization vs JSON vs XML - Stack Overflow

    Web services use XML very heavily. If your consumer is another Java program then definitely java serialization is preferred option (e.g. RMI). So its not out yet :-). But yes there is blurred line between …