StAX JAVA提取特定标签和数据

时间:2013-02-28 14:45:23

标签: java parsing stax

我正在尝试了解如何识别和使用特定的XML,并在其中一个标记中提取特定的数据。

当我尝试达到上述目标时,我一直在浏览文档和示例,然后分支和修改。

我正在使用StAX

我的整个代码和xml文件位于这篇文章的底部。

我有两个问题: 1)我有一个问题,为什么我的部分代码没有按照我的想法行事。 我有

String elem = se.getName().toString();
System.out.printf("elem = %s\n",elem);
if( se.getName().toString() == "{http://www.publishing.org}Date")
                        //if( elem == "1")
                        {
                            System.out.println("Here !!!!!!!!!!!!!!!!!");
                        }

我     System.out.printf(“elem =%s \ n”,elem);

收益率:elem = {http://www.publishing.org}日期

但我的if语句if(se.getName()。toString()==“{http://www.publishing.org} Date”) 永远不会是真的,这意味着我永远不会得到“这里!!!”

问题2, 我为什么得到:

{http://www.publishing.org}author
{http://www.publishing.org}Date
{http://www.publishing.org}ISBN

而不仅仅是作者,日期和ISBN?为什么每一行都给我{http://publishing.org}?

public static void main(String[] args) throws FileNotFoundException, XMLStreamException
{
    // TODO code application logic here
    //System.out.println("Here");
    //String filename = null;
    String filename = "BookCatalog.xml";
    XMLInputFactory factory = XMLInputFactory.newInstance();
    XMLEventReader reader = factory.createXMLEventReader(new FileReader(filename));
    while(reader.hasNext())
            {
                XMLEvent event = reader.nextEvent();
                XMLEvent nextEvent = reader.peek();
                switch (event.getEventType())
                        {
                    case XMLEvent.START_ELEMENT:
                        StartElement se = event.asStartElement();
                        //System.out.println("Here");
                        //System.out.print("<" + se.getName());

                        System.out.print(" " + se.getName());
                        System.out.printf("\n");
                        String elem = se.getName().toString();
                        //String elem = "1";
                        System.out.printf("elem = %s\n",elem);
                        //String ele = event.getAttributeName();
                        if( se.getName().toString() == "{http://www.publishing.org}Date")
                        //if( elem == "1")
                        {
                            System.out.println("Here !!!!!!!!!!!!!!!!!");
                        }
                        Iterator attributes = se.getNamespaces();

                        while(attributes.hasNext())
                        {
                            Attribute attr= (Attribute)attributes.next();
                            System.out.print(" " + attr.getName() + "=\"" +attr.getValue() +"\"");
                            System.out.printf("\n");
                        }//end while loop
                    System.out.print(">");
                        if(nextEvent.isCharacters())
                        {
                            Characters c = reader.nextEvent().asCharacters();
                            if(!c.isWhiteSpace())
                            System.out.print(c.getData());
                            System.out.printf("\n");


                        }// end if
                    /*case XMLEvent.END_ELEMENT>
                        EndElement ee = event.asEndElement();
                        System.out.print("</"+ee.getName()+">");
                        break;
                        * */
                        }// end witch
            }// end while
    reader.close();
}//end Main

和XML:          http://www.publishing.org“&GT;                      Yogasana             Dhirenda             1966年             81-40             Dhirenda             11.50                               Yogasana             J. K.             1954年             0-06             哈珀             2.95              

1 个答案:

答案 0 :(得分:1)

问题1:这看起来像.equals()vs ==。我想你想要.equals()。