-1

我正在尝试创建一个具有 ArrayList 的类。例如:

public class SubCategory {
    protected String nameOfCategory;
    @XmlElement(required = true)
    protected String link;
    @XmlElementRef
    protected List<SubCategory> supCategory;...
}

如何获取子类别的最后一个列表?我将 JAXB 用于 xml 文件,xsd 文件如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.example.org/CategoriesTree" xmlns="http://www.example.org/CategoriesTree"
    elementFormDefault="qualified">

    <xs:element name="Categories">
        <xs:complexType>
            <xs:sequence>
                <xs:element name="mainCategory" type="subCategory" minOccurs="0" maxOccurs="unbounded" />
            </xs:sequence>
        </xs:complexType>
    </xs:element>

    <xs:complexType name="subCategory">
        <xs:sequence>
            <xs:element name="nameOfCategory" type="xs:string"/>
            <xs:element name="link" type="xs:string"/>
            <xs:element name="subCategory" type="subCategory" maxOccurs="unbounded"
                minOccurs="0"/>
        </xs:sequence>
    </xs:complexType>
</xs:schema>

是的,我有这种方法,但我必须转到树中的最后一个元素,例如:如何获取最后一个元素?

<code>
<subCategory>
  <nameOfCategory>Ordnungsmittel / Ablagemittel</nameOfCategory>
  <link>link=Ordnungsmittel / Ablagemittel</link>
  <subCategory>
    <nameOfCategory>Ordnungsmittel / Ablagemittel</nameOfCategory>
    <link>link=Ordnungsmittel / Ablagemittel</link>
    <subCategory>
       <nameOfCategory>Last</nameOfCategory>
        <link>link=Last</link>
    </subCategory>
   </subCategory>
</subCategory>
</code>
4

4 回答 4

0

好的,我做到了:) 感谢您的回复。

public void showTree(List<SubCategory> child){

        for(int i=child.size()-1; i>=0; i--){
            if(!child.get(i).getSupCategory().isEmpty()){
                System.out.println(child.get(i).getNameOfCategory());
                showTree(child.get(i).getSupCategory());
            }
            else{
                System.out.println(child.get(i).getNameOfCategory());
                //child.remove(i);

            }
        }
于 2013-01-29T10:03:42.740 回答
0

我不确定你想要完成什么。我从我的一个项目中获取了一个生成的类,并像您在 XSD 中发布的那样定义了一个列表,它将在 Java 类中像这样创建:

@XmlElement(required = true)
protected List<Manager> manager;

public List<Manager> getManager() {
    if (manager == null) {
        manager = new ArrayList<Manager>();
    }
    return this.manager;
}

如果你想在列表中添加一些东西,你还必须使用 get 方法来获取引用。

于 2013-01-28T13:45:21.250 回答
0

如何获取子类别的最后一个列表?

由于您有一SubCategory棵树,其中每个节点的类型都相同 (SubCategory

于 2013-01-28T15:27:02.340 回答
0

没有“最后一个列表”,因为同一级别可以有多个元素!要检索您最后标记的那个,您需要一个递归循环,或者您可以更好地建模它!

于 2013-01-28T15:27:17.517 回答