0

xmlドキュメントをjavaで解析する方法と、問題が発生する方法についてのチュートリアルを行っています。「domは解決できません」というエラーが表示されます。これは、変数を宣言してスコープ外になっている方法と関係があることはわかっていますが、修正方法がわかりません。

どんな助けでも大歓迎です、私は以下の関連する部分を投稿します:

package com.xmlparse;

import java.io.IOException;
import java.util.Iterator;

import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;

import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.NodeList;
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;

import com.entities.Employee;



public class XmlParser
{

private void parseXmlFile(){
    //get the factory
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();



    try {

        //Using factory get an instance of document builder
        DocumentBuilder db = dbf.newDocumentBuilder();

        //parse using builder to get DOM representation of the XML file
    Document dom = db.parse("test.xml");


    } catch(ParserConfigurationException pce) {
        pce.printStackTrace();
    } catch(SAXException se) {
        se.printStackTrace();
    } catch(IOException ioe) {
        ioe.printStackTrace();
    }
}

 private void parseDocument() {

    Document dom = db.parse("test.xml");

    //get the root element
    Element docEle = dom.getDocumentElement();

    //get a nodelist of elements
    NodeList nl = docEle.getElementsByTagName("Employee");
    if(nl != null && nl.getLength() > 0) {
        for(int i = 0 ; i < nl.getLength(); i++) {

            //get the employee element
            Element el = (Element)nl.item(i);

            //get the Employee object
            Employee e = getEmployee(el);


            //add it to list
            myEmpls.add(e);
        }
    }
}
4

2 に答える 2

1

さまざまなメソッドで使用しているため、クラス メンバー変数としてDocumentBuilder db宣言できます。db

private DocumentBuilder db;

そして次のように初期化しますparseXmlFile

db = dbf.newDocumentBuilder();
于 2012-12-17T19:53:36.963 に答える
0

以下のようにメソッド シグネチャを変更し、呼び出し時に作成されたドキュメント ビルダー インスタンスを渡すことができます。

private void parseDocument(DocumentBuilder db) 
于 2012-12-17T19:58:58.467 に答える