1

また私です。次の XML ファイルがあります。

<?xml version="1.0"?>
<components>
    <resources>
        <resource id="House">
            <id>int</id>
            <type>string</type>
            <maxUsage>float</maxUsage>
            <minUsage>float</minUsage>
            <averageUsage>float</averageUsage>
        </resource>
        <resource id="Commerce">
            <id>int</id>
            <type>string</type>
            <maxUsage>float</maxUsage>
            <minUsage>float</minUsage>
            <averageUsage>float</averageUsage>
        </resource>
        <resource id="Industry">
            <id>int</id>
            <type>string</type>
            <maxUsage>float</maxUsage>
            <minUsage>float</minUsage>
            <averageUsage>float</averageUsage>
        </resource>
    </resources>
    <agregatorsType1>
        <agregator1 id="CSP">
            <id>int</id>
            <type>string</type>
        </agregator1>
        <agregator1 id="Microgrid">     
            <id>int</id>
            <type>string</type>
        </agregator1>
    </agregatorsType1>
    <soagregatorsType0>
        <agregator0 id="VPP">
            <id>int</id>
            <type>string</type>
        </agregator0>
    </agregatorsType0>
</components>

JComboBox に各リソース (House、Commerce、Industry) の ID を入力したいと考えています。

私は次の方法を持っています:

public static String[] readResourcesXML(String fileName) throws IOException, ClassNotFoundException, Exception {


//Gets XML
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder docBuilder = factory.newDocumentBuilder();
Document documento = docBuilder.parse(fileName);

//Searches all text 
documento.getDocumentElement().normalize();

//Gets elements from xml 
Element raiz = documento.getDocumentElement();
NodeList listaResources = raiz.getElementsByTagName("resources");

//Search all resources 
int tam = listaResources.getLength();
String[] vecResources = new String[tam];

for (int i = 0; i < tam; i++) {
    Element elem = (Element) listaResources.item(i);           
    vecResources[i] =  elem.getAttribute("/resource/@id");
}
    //returns an array with all the id's of the resources
    return vecResources;
}

注: 文字列 fileName の値は「src\configs\features.xml」です。

問題は、JComboBox が常に空であることです。私は何が欠けていますか?

ありがとう ;)

4

1 に答える 1