XML with field name and value, in response to mapping Java objects cannot be retrieved from the field

I have the following response as xml I need to map to java object I try to use jaxb, sax, dom can not get data from below Data. Please suggest how to retrieve data from below xml




TRUE

















TRUE






















Using XStream, you can serialize most Java objects without any mapping. The object name becomes the element name in the generated XML, the class The string in the XML constitutes the element content of the XML. Classes that use XStream serialization do not need to implement the Serializable interface. XStream is a serialization tool, not a data binding tool, which means it will not be defined from XML or XML schema (XSD ) File execution class generation. Check this Stackoverflow question

I have the following response as xml I need to map to java object I try to use jaxb, sax, dom cannot get data from below data. Please suggest how to retrieve data from the following xml




TRUE








< FIELD NAME="strWeight" VALUE="0.020" />

< br />





TRUE






















< p>

Using XStream, you can serialize most Java objects without any mapping. The object name becomes the element name in the generated XML, and the string in the class constitutes the element content of the XML. Using XStream sequence The modified class does not need to implement the Serializable interface. XStream is a serialization tool, not a data binding tool, which means that it will not change from XML or XML Schema Definition (XSD) files perform class generation. Check this Stackoverflow question

Leave a Comment

Your email address will not be published.