About 187,000 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 …

  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 …

  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 …

  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 …

  5. 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 …

  6. 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 …

  7. How does JSON compare to XML in terms of file size and …

    Apr 20, 2010 · JSON Serialization: 5258 ms, XML Serialization: 3266 ms JSON Deserialization: 9582 ms, XML Deserialization: 4604 ms So XML serializes and deserializes faster using the …

  8. 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, …

  9. Which is more secured and why JSON or XML - Stack Overflow

    Apr 30, 2013 · There is no difference security wise between JSON and XML. The "insecurities" referred to by people regarding JSON have to do with the way JSON can (but should never …

  10. 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 …