简体   繁体   中英

Storing xml data in Java object using jaxb

<?xml version="1.0" encoding="UTF-8"?>
  <filepaths>
    <application_information_ticker>
      <desc>Ticker1</desc>
      <folder_path>../atlas/info/</folder_path>
    </application_information_ticker>
    <document_management_system>
      <desc></desc>
      <folder_path>../atlas/dms/</folder_path>
    </document_management_system>
  </filepaths>

I have a xml file like this. I need to convert this xml file into java object using JAXB. Because of nested tags, I couldn't perform the operation. Please suggest me a solution for this

  DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
  DocumentBuilder builder = factory.newDocumentBuilder();
  InputSource is = new InputSource( new StringReader( xmlString) );
  Document doc = builder.parse( is );

  XPathFactory factory = XPathFactory.newInstance();
  XPath xpath = factory.newXPath();
  xpath.setNamespaceContext(new PersonalNamespaceContext());
  XPathExpression expr = xpath.compile("//src_small/text()");

  Object result = expr.evaluate(doc, XPathConstants.NODESET);
  NodeList nodes = (NodeList) result;
  List<String> list = new ArrayList<String>();
  for (int i = 0; i < nodes.getLength(); i++) {
      list.add (nodes.item(i).getNodeValue());
      System.out.println(nodes.item(i).getNodeValue());

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM