Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/xml/12.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java 为什么我的变量是空的?_Java_Xml_Parsing - Fatal编程技术网

Java 为什么我的变量是空的?

Java 为什么我的变量是空的?,java,xml,parsing,Java,Xml,Parsing,我这样做 package file; import java.io.IOException; import org.apache.log4j.Logger; import org.xml.sax.Attributes; import org.xml.sax.ContentHandler; import org.xml.sax.Locator; import org.xml.sax.SAXException; import org

我这样做

    package file;

    import java.io.IOException;

    import org.apache.log4j.Logger;
    import org.xml.sax.Attributes;
    import org.xml.sax.ContentHandler;
    import org.xml.sax.Locator;
    import org.xml.sax.SAXException;
    import org.xml.sax.XMLReader;
    import org.xml.sax.helpers.LocatorImpl;
    import org.xml.sax.helpers.XMLReaderFactory;

    public class GetNatureSax implements ContentHandler {

        private final static Logger _logger = Logger.getLogger(GetNatureSax.class.getName());
        private boolean isCurrentElement = false;
        private Locator locator;
        private String _parameterValue = null;

        public GetNatureSax() {
            super();
            locator = new LocatorImpl();
        }

        public String getValeurParametre() {
            return _parameterValue;
        }

        public void setDocumentLocator(Locator value) {
            locator = value;
        }

        public void startDocument() throws SAXException {}

        public void endDocument() throws SAXException {}

        public void startPrefixMapping(String prefix, String URI) throws SAXException {

        }

        public void endPrefixMapping(String prefix) throws SAXException {}

        public void startElement(String nameSpaceURI, String localName, String rawName, Attributes attributs)
        throws SAXException {
            if (localName.equals("Nature")) {
                isCurrentElement = true;
            }
        }

        public void endElement(String nameSpaceURI, String localName, String rawName) throws SAXException {

            if (localName.equals("Nature")) {
                isCurrentElement = false;
            }
        }

        public void characters(char[] ch, int start, int end) throws SAXException {
            if (isCurrentElement) {
                _parameterValue = new String(ch, start, end);
            }
        }

        public void ignorableWhitespace(char[] ch, int start, int end) throws SAXException {
            System.out.println("espaces inutiles rencontres : ..." + new String(ch, start, end) + "...");
        }

        public void processingInstruction(String target, String data) throws SAXException {
            System.out.println("Instruction de fonctionnement : " + target);
            System.out.println("  dont les arguments sont : " + data);
        }

        public void skippedEntity(String arg0) throws SAXException {}

        public void parseFichier(String i_fichierATraiter) {
            XMLReader saxReader;
            try {

                saxReader = XMLReaderFactory.createXMLReader("org.apache.xerces.parsers.SAXParser");
                saxReader.setContentHandler(new GetNatureSax());
                saxReader.parse(i_fichierATraiter);
                System.out.println(_parameterValue);
            } catch (SAXException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
我的XML:

...
<Reference>
  <Nature>ACHAT</Nature> 
  <Statut>2</Statut> 
  <Type-Gest>RE</Type-Gest> 
  <Gest>RE_ELECTRA</Gest> 
  <Type-Res>D</Type-Res> 
  <Nb-h>24</Nb-h> 
</Reference>
...
。。。
阿查特
2.
重新
伊莱克特拉酒店
D
24
...
为什么它执行这一行

System.out.println(_参数值)


我的变量为null,在调试之前,我的变量不为null,因为您实例化了一个新的
GetNatureSax
,并将其交给
SaxReader
有一个
内容处理程序

因此,当解析结束时,是新的
GetNatureSax
实例被修改,并且设置了字段
\u参数值
,而不是当前实例(this)

只需修改您的
parseFichier
方法,如下所示:

saxReader = XMLReaderFactory.createXMLReader("org.apache.xerces.parsers.SAXParser");
saxReader.setContentHandler(this);  // here
saxReader.parse(i_fichierATraiter);
System.out.println("Found: " + getValeurParametre());

使用我的调试器,我可以看到您正在使用两个GetNatureSax

  saxReader.setContentHandler(new GetNatureSax());
这将创建第二个GetNatureSax对象,在其中设置值

改成

 saxReader.setContentHandler(this);

已修复此问题。

请在此处发布时删除如此长的评论。另外,请仅保留相关代码。您将获得名为
Nature
的标签内容。你也能给我们看看你的XML吗?如果你只发布相关的代码,那会有帮助的。如果您发布使用GetNatureSax.Btw的代码也会有所帮助,只打印相关代码不仅对我们有帮助,而且很有可能在查找相关代码的过程中,您自己就解决了问题。