We have a requirement to fetch information from the following API http://www.viralheat.com/developer/sentiment_api#method1 which can throw the output in xml or json. What java api should I use, so that I can write a wrapper to parse this information which might be consumed by the UI in JSON format and by a standalone client in a XML format.
|
I would recommend using Jackson as it is superior to other recommended alternatives when producing JSON, and for XML either:
I do NOT think that you absolute must use a single library or framework, and the result is often better if you just choose best choice for each separately. XStream, for example, is good for XML, but produces ugly JSON (and slowly at that). Going from XML to JSON is error-prone due to format impedance and I have yet to see an XML-processing lib that produces JSON clean JSON efficiently (or even just clean or efficiently). |
|||
|
|
|
I would use Xstream which supports XML and JSon with mapping of data structures. |
|||
|
|
|
Note: I'm the EclipseLink JAXB (MOXy) lead and a member of the JAXB 2 (JSR-222) expert group. You can do this with MOXy, check out my blog post where one domain model with one set of metadata is used with both the JSON and XML formats of the Google Maps Geocoding API V2: Address The following is a class from the example. It leverages MOXy's
Demo The standard JAXB APIs are used to do the conversions to/from JSON and XML:
|
||||
|
|