繁体   English   中英

使用 jaxb 将 xml 数据存储在 Java 对象中

[英]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>

我有一个这样的xml文件。 我需要使用 JAXB 将此 xml 文件转换为 java 对象。 由于嵌套标签,我无法执行操作。 请建议我一个解决方案

  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());

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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