Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Upon executing a http request on my web serivce, I get a javax.ws.rs.core.Response object. When I call the getEntity method on the Response object I get an input stream, which is a string representation of JSON. Does anyone know how I can/should convert this string into a java object? Since, I'm using CXF can I use the JAXBContext? Or must I create a custom message body reader? Thanks.

share|improve this question
1  
I'd created WebService client to consume it – Jigar Joshi Jan 21 '11 at 19:14

2 Answers

Jackson has built-in JAX-RS support.
See org.codehaus.jackson.jaxrs.JacksonJsonProvider and org.codehaus.jackson.jaxrs.JacksonJaxbJsonProvider

share|improve this answer

There are some libraries to parse json string into java objects:

This link is very usefull!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.