1

我有一个用于使用 JAXB 创建 XML 文件的 java 代码,我知道如何创建根元素和元素,但我想从这样的元素创建一个子元素:

    <root element>
        <element>
               <child element>
               <group of elements and attributes>
               </child element>
        </element>
    </root element>

我现在只知道如何创建这样的:

    <XmlSource URL="http://local.yahoo.com/rss/restaurants?csz=Cairo,+CA">
        <hostName>local.yahoo.com</hostName>
        <parameters>
            <entry>
                <key>csz</key>
                <value>Cairo,+CA</value>
            </entry>
        </parameters>
        <urlPath>/rss/restaurants</urlPath>
    </XmlSource> 

那么,如果我想将参数放在 hostName 中,我会怎么做:

<XmlSource URL="http://local.yahoo.com/rss/restaurants?csz=Cairo,+CA">
    <hostName name="local.yahoo.com">
             <parameters>
                <entry>
                    <key>csz</key>
                    <value>LosAngelos,+CA</value>
                </entry>
            </parameters>
   </hostName>
    <urlPath>/rss/restaurants</urlPath>
</XmlSource>

最后是我使用的java代码:

我把注释放在的类:

       @XmlRootElement(name= "Source")
       public class XmlConf {

    @XmlElement(name= "Source")

    private URL url;
    private List<String> path = new ArrayList<String>();
    private String urlp;
    private Map<String, String> parameters;
    private String host;


    public URL getUrl() {
        return url;
    }
    @XmlAttribute(name = "URL")
    public void setUrl(URL url) {
        this.url = url;
    }
    @XmlElement
    public List<String> getPath() {
        return path;
    }
    public void setPath(String path) {
        this.path.add(path);
    }
    @XmlElement
    public void setUrlPath(String urlp){
        this.urlp = urlp;
    }
    public String getUrlPath(){
        return urlp;
    }
    @XmlElement(name = "param")
    public void setParameters(Map<String, String> parameters){
        this.parameters = parameters;
    }
    public Map<String, String> getParameters(){
        return parameters;
    }
    public void setHostName(String host){
        this.host = host;
    }
    public String getHostName(){
        return host;
    }
      }

我使用 JAXB 的课程:

    public class ConfList {

    private static final String fileName = "Source.xml";
    List<String> xmlConfList;
    private Object object;

    public ConfList(Object object){
        this.object = object;
    }

    public void addToList() throws IOException, JAXBException {

        File file = new File(object+fileName);
        JAXBContext jaxbContext = JAXBContext.newInstance(XmlConf.class);
        Marshaller jaxbMarshaller = jaxbContext.createMarshaller();

        jaxbMarshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);

        jaxbMarshaller.marshal(object, file);
        jaxbMarshaller.marshal(object, System.out);

    }
      }
4

2 回答 2

3

您要生成的 XML 具有所谓的混合内容。混合内容是指元素 ( hostName) 同时具有文本 ( local.yahoo.com) 和元素 ( parameters) 内容。

<XmlSource URL="http://local.yahoo.com/rss/restaurants?csz=Cairo,+CA">
    <hostName>local.yahoo.com
        <parameters>
            ...
        </parameters>
    </hostName>
</XmlSource>

这可以通过 JAXB 与@XmlMixed文本和元素内容进入一个列表的注释进行映射,但这可能不是您想要的。像这样的东西怎么样?

<XmlSource URL="http://local.yahoo.com/rss/restaurants?csz=Cairo,+CA">
    <host name="local.yahoo.com">
        <parameters>
            ...
        </parameters>
    </host>
</XmlSource>

更新

是的,你是对的,我的错,我正在寻找那个表格而不是我写的那个。我怎样才能做到?

注意: 我是EclipseLink JAXB (MOXy)负责人,也是JAXB (JSR-222)专家组的成员。

您可以在此用例中利用 MOXy 的@XmlPath扩展:

import java.net.URL;
import java.util.*;
import javax.xml.bind.annotation.*;
import org.eclipse.persistence.oxm.annotations.XmlPath;

@XmlRootElement(name = "XmlSource")
@XmlType(propOrder={"parameters", "urlp", "path"})
@XmlAccessorType(XmlAccessType.FIELD)
public class XmlConf {

    @XmlAttribute(name="URL")
    private URL url;

    private List<String> path = new ArrayList<String>();

    @XmlElement(name="urlPath")
    private String urlp;

    @XmlPath("hostName/parameters")
    private Map<String, String> parameters;

    @XmlPath("hostName/@name")
    private String host;

}

了解更多信息

于 2013-05-23T10:14:48.410 回答
0

您可以继续创建第二类“条目”,它将您的属性“键”和“值”作为字段,然后像这样更改“XmlConf”中的字段

private List<Entry> parameters;

干杯 //Lutz

于 2013-05-23T10:04:21.083 回答