有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

将嵌套的xml元素映射到单个Java对象

我该如何绘制这张地图

    <urn:envelope xmlns:urn="urn:com.twinstrata.webservice:2.1">
<urn:encoded>
    <urn:response>
        <urn:license>
            <urn:licenseTag>WHATEVER934</urn:licenseTag>
            <urn:accountNumber>2016763117</urn:accountNumber>
            <urn:licenseType>TRIAL</urn:licenseType>
            <urn:licenseClass>Credentialed</urn:licenseClass>
            <urn:volumeAllowed>Unlimited</urn:volumeAllowed>
            <urn:volumeProvisioned>0</urn:volumeProvisioned>
            <urn:snapshotLimit>Unlimited</urn:snapshotLimit>
            <urn:snapshotLimitPerVolume>10</urn:snapshotLimitPerVolume>
            <urn:status>Active</urn:status>
            <urn:usedSpace>0</urn:usedSpace>
            <urn:expirtationDate>2013-03-27 14:48:47.0</urn:expirtationDate>
            <urn:storageLimit>Unlimited</urn:storageLimit>
        </urn:license>
    </urn:response>
</urn:encoded>
<urn:signature>Hl8rk2aTEsOkkq5e383LH0BqdFfmVcKIg9FuFEnnrlFk9fwYVEQwkrm/7MPM2Zmli2Um00L2Ab25tZg2w8pEzXyDsd+vwCAH0ypQwhIVPayDjgYKlYXbnkqG5S+7qiVbqD2qZDektuPoEWvaSdxO3ZgUibT+nnrO0kl6E7i4lB0=
</urn:signature>

对此

    package com.folio3.bean;

    import javax.xml.bind.annotation.XmlElement;
    import javax.xml.bind.annotation.XmlRootElement;

    @XmlRootElement(name = "envelope" , namespace = "urn:com.twinstrata.webservice:2.1")
    public class ResponseXML {


        private String userName;
        private String license;
        private String signature;
        private String licenseTag;
        private String accountNumber;
        private String licenseType;
        private String licenseClass;
        private String volumeAllowed;
        private String volumeProvisioned;
        private String publicKey;

        @XmlElement(name = "userName" , namespace = "urn:com.twinstrata.webservice:2.1")
        public String getUserName() {
            return userName;
        }
        public void setUserName(String userName) {
            this.userName = userName;
        }

        @XmlElement(name = "license" , namespace = "urn:com.twinstrata.webservice:2.1")
        public String getLicense() {
            return license;
        }
        public void setLicense(String license) {
            this.license = license;
        }

        @XmlElement(name = "signature" , namespace = "urn:com.twinstrata.webservice:2.1")
        public String getSignature() {
            return signature;
        }
        public void setSignature(String signature) {
            this.signature = signature;
        }


        @XmlElement(name = "licenseTag" , namespace = "urn:com.twinstrata.webservice:2.1")
        public String getLicenseTag() {
            return licenseTag;
        }
        public void setLicenseTag(String licenseTag) {
            this.licenseTag = licenseTag;
        }

        @XmlElement(name = "accountNumber" , namespace = "urn:com.twinstrata.webservice:2.1")
        public String getAccountNumber() {
            return accountNumber;
        }
        public void setAccountNumber(String accountNumber) {
            this.accountNumber = accountNumber;
        }

        @XmlElement(name = "licenseType" , namespace = "urn:com.twinstrata.webservice:2.1")
        public String getLicenseType() {
            return licenseType;
        }
        public void setLicenseType(String licenseType) {
            this.licenseType = licenseType;
        }

        @XmlElement(name = "licenseClass" , namespace = "urn:com.twinstrata.webservice:2.1")
        public String getLicenseClass() {
            return licenseClass;
        }
        public void setLicenseClass(String licenseClass) {
            this.licenseClass = licenseClass;
        }

        @XmlElement(name = "volumeAllowed" , namespace = "urn:com.twinstrata.webservice:2.1")
        public String getVolumeAllowed() {
            return volumeAllowed;
        }
        public void setVolumeAllowed(String volumeAllowed) {
            this.volumeAllowed = volumeAllowed;
        }

        @XmlElement(name = "volumeProvisioned" , namespace = "urn:com.twinstrata.webservice:2.1")
        public String getVolumeProvisioned() {
            return volumeProvisioned;
        }
        public void setVolumeProvisioned(String volumeProvisioned) {
            this.volumeProvisioned = volumeProvisioned;
        }

        @XmlElement(name = "publicKey" , namespace = "urn:com.twinstrata.webservice:2.1")
        public String getPublicKey() {
            return publicKey;
        }
        public void setPublicKey(String publicKey) {
            this.publicKey = publicKey;
        }


        @Override
        public String toString() {
            StringBuilder builder = new StringBuilder();
            builder.append("ResponseXML [userName=");
            builder.append(userName);
            builder.append(", license=");
            builder.append(license);
            builder.append(", signature=");
            builder.append(signature);
            builder.append(", licenseTag=");
            builder.append(licenseTag);
            builder.append(", accountNumber=");
            builder.append(accountNumber);
            builder.append(", licenseType=");
            builder.append(licenseType);
            builder.append(", licenseClass=");
            builder.append(licenseClass);
            builder.append(", volumeAllowed=");
            builder.append(volumeAllowed);
            builder.append(", volumeProvisioned=");
            builder.append(volumeProvisioned);
            builder.append(", publicKey=");
            builder.append(publicKey);
            builder.append("]");
            return builder.toString();
        }
    }

目前,它只映射XML的一个属性,即“签名”。 为了简单起见,我不想创建其他类并在其中嵌套对象。我只想在单个Java类中解析嵌套的xml标记。 我该怎么做


共 (2) 个答案

  1. # 1 楼答案

    注意:我是EclipseLink JAXB (MOXy)领导和JAXB (JSR-222)专家组成员

    响应xml

    您可以使用MOXy的@XmlPath扩展来映射您的用例(请参阅:http://blog.bdoughan.com/2010/09/xpath-based-mapping-geocode-example.html)。下面是用例的部分映射

    package forum15391077;
    
    import javax.xml.bind.annotation.*;
    import org.eclipse.persistence.oxm.annotations.XmlPath;
    
    @XmlRootElement(name = "envelope")
    @XmlType(propOrder={"licenseTag", "accountNumber", "licenseType", "licenseClass", "volumeAllowed", "volumeProvisioned", "signature", "license", "publicKey", "userName"})
    @XmlAccessorType(XmlAccessType.FIELD)
    public class ResponseXML {
    
        private String userName;
        private String license;
        private String signature;
    
        @XmlPath("urn:encoded/urn:response/urn:license/urn:licenseTag/text()")
        private String licenseTag;
    
        @XmlPath("urn:encoded/urn:response/urn:license/urn:accountNumber/text()")
        private String accountNumber;
    
        @XmlPath("urn:encoded/urn:response/urn:license/urn:licenseType/text()")
        private String licenseType;
    
        @XmlPath("urn:encoded/urn:response/urn:license/urn:licenseClass/text()")
        private String licenseClass;
    
        @XmlPath("urn:encoded/urn:response/urn:license/urn:volumeAllowed/text()")
        private String volumeAllowed;
    
        @XmlPath("urn:encoded/urn:response/urn:license/urn:volumeProvisioned/text()")
        private String volumeProvisioned;
    
        private String publicKey;
    
    }
    

    套餐信息

    我们将使用包级别的@XmlSchema注释来指定名称空间限定(请参见:http://blog.bdoughan.com/2010/08/jaxb-namespaces.html)。我们还将使用它来定义我们在@XmlPath注释中使用的urn前缀

    @XmlSchema(
        namespace="urn:com.twinstrata.webservice:2.1",
        elementFormDefault=XmlNsForm.QUALIFIED,
        xmlns={
            @XmlNs(namespaceURI = "urn:com.twinstrata.webservice:2.1", prefix = "urn")
        }
    )
    package forum15391077;
    
    import javax.xml.bind.annotation.*;
    

    jaxb。属性

    要将MOXy指定为JAXB提供程序,需要在与域模型相同的包中包含一个名为jaxb.properties的文件,并使用以下条目(请参见:http://blog.bdoughan.com/2011/05/specifying-eclipselink-moxy-as-your.html

    javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory
    

    演示

    由于MOXy是标准的JAXB实现,因此使用标准的JAXB运行时api

    package forum15391077;
    
    import java.io.File;
    import javax.xml.bind.*;
    
    public class Demo {
    
        public static void main(String[] args) throws Exception {
            JAXBContext jc = JAXBContext.newInstance(ResponseXML.class);
    
            Unmarshaller unmarshaller = jc.createUnmarshaller();
            File xml = new File("src/forum15391077/input.xml");
            ResponseXML response = (ResponseXML) unmarshaller.unmarshal(xml);
    
            Marshaller marshaller = jc.createMarshaller();
            marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
            marshaller.marshal(response, System.out);
        }
    
    }
    

    输入。xml/输出

    下面是一个基于我映射的用例部分的示例XML文档

    <?xml version="1.0" encoding="UTF-8"?>
    <urn:envelope xmlns:urn="urn:com.twinstrata.webservice:2.1">
       <urn:encoded>
          <urn:response>
             <urn:license>
                <urn:licenseTag>WHATEVER934</urn:licenseTag>
                <urn:accountNumber>2016763117</urn:accountNumber>
                <urn:licenseType>TRIAL</urn:licenseType>
                <urn:licenseClass>Credentialed</urn:licenseClass>
                <urn:volumeAllowed>Unlimited</urn:volumeAllowed>
                <urn:volumeProvisioned>0</urn:volumeProvisioned>
             </urn:license>
          </urn:response>
       </urn:encoded>
       <urn:signature>Hl8rk2aTEsOkkq5e383LH0BqdFfmVcKIg9FuFEnnrlFk9fwYVEQwkrm/7MPM2Zmli2Um00L2Ab25tZg2w8pEzXyDsd+vwCAH0ypQwhIVPayDjgYKlYXbnkqG5S+7qiVbqD2qZDektuPoEWvaSdxO3ZgUibT+nnrO0kl6E7i4lB0=
        </urn:signature>
    </urn:envelope>
    
  2. # 2 楼答案

    我通过创建嵌套类和使用适当的JAXB注释使其工作