使用java,我如何从网站读取xml文件,然后将数据从xml文件放入JList?

时间:2021-02-12 01:35:21

Here's the idea of the xml file:

这是xml文件的想法:

<date>
<aug30>
    <item1>This is an item for August 30</item1>
    <item2>This is another item for August 30</item2>
</aug30>
<aug31>
    <item1>This is an item for August 31</item1>
    <item2>This is another item for August 31</item2>
    <item3>This is a 3rd item for August 31</item3>
</aug31>
</date>

What I'm trying to figure out how to do is, for example, on August 30, put items 1 and 2 in the aug30 tags into a JList, and on August 31, put items 1, 2 and 3 from the aug31 tags into that same JList.

我想弄明白该怎么做的是,例如,8月30日,将aug30标签中的第1项和第2项放入JList,8月31日,将aug31标签中的第1项,第2项和第3项放入那个JList。

1 个解决方案

#1


0  

Here you go. This finds only the sections based on the date. I haven't shown the adding to JList, as thats easy. Just change the print statement which prints ADD and you are good to go.

干得好。这仅查找基于日期的部分。我没有向JList添加添加,因为这很容易。只需更改打印ADD的打印语句即可。

    String xml = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" +
    "<date>\n" +
    "<aug30>\n" +
    "    <item1>This is an item for August 30</item1>\n" +
    "    <item2>This is another item for August 30</item2>\n" +
    "</aug30>\n" +
    "<aug31>\n" +
    "    <item1>This is an item for August 31</item1>\n" +
    "    <item2>This is another item for August 31</item2>\n" +
    "    <item3>This is a 3rd item for August 31</item3>\n" +
    "</aug31>\n" +
    "</date>\n";

    SimpleDateFormat df = new SimpleDateFormat("MMMd");
    String date = df.format(new Date()).toLowerCase();

    try {
        DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
        Document doc = builder.parse(new InputSource(new StringReader(xml)));

        DocumentTraversal traversal = (DocumentTraversal) doc;

        NodeIterator iterator = traversal.createNodeIterator(
          doc.getDocumentElement(), NodeFilter.SHOW_ELEMENT, null, true);

        for (Node n = iterator.nextNode(); n != null; n = iterator.nextNode()) {
            String tagname = ((Element) n).getTagName();
            //System.out.println("Compare TAG: '" + tagname + "' with '" + date + "'");
            if(tagname.equals(date)) {
                n = iterator.nextNode();
                tagname = ((Element) n).getTagName();
                while(tagname.startsWith("item") && n != null) {
                    System.out.println("ADD: " + ((Element)n).getTextContent());
                    n = iterator.nextNode();
                    if(n != null) {
                        tagname = ((Element) n).getTagName();
                    } 
                }
            }
        }

    } catch (Exception e) {
        e.printStackTrace();
    }

The imports are:

进口是:

import java.io.StringReader;
import java.text.SimpleDateFormat;
import java.util.Date;

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

import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.traversal.DocumentTraversal;
import org.w3c.dom.traversal.NodeFilter;
import org.w3c.dom.traversal.NodeIterator;
import org.xml.sax.InputSource;

#1


0  

Here you go. This finds only the sections based on the date. I haven't shown the adding to JList, as thats easy. Just change the print statement which prints ADD and you are good to go.

干得好。这仅查找基于日期的部分。我没有向JList添加添加,因为这很容易。只需更改打印ADD的打印语句即可。

    String xml = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" +
    "<date>\n" +
    "<aug30>\n" +
    "    <item1>This is an item for August 30</item1>\n" +
    "    <item2>This is another item for August 30</item2>\n" +
    "</aug30>\n" +
    "<aug31>\n" +
    "    <item1>This is an item for August 31</item1>\n" +
    "    <item2>This is another item for August 31</item2>\n" +
    "    <item3>This is a 3rd item for August 31</item3>\n" +
    "</aug31>\n" +
    "</date>\n";

    SimpleDateFormat df = new SimpleDateFormat("MMMd");
    String date = df.format(new Date()).toLowerCase();

    try {
        DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
        Document doc = builder.parse(new InputSource(new StringReader(xml)));

        DocumentTraversal traversal = (DocumentTraversal) doc;

        NodeIterator iterator = traversal.createNodeIterator(
          doc.getDocumentElement(), NodeFilter.SHOW_ELEMENT, null, true);

        for (Node n = iterator.nextNode(); n != null; n = iterator.nextNode()) {
            String tagname = ((Element) n).getTagName();
            //System.out.println("Compare TAG: '" + tagname + "' with '" + date + "'");
            if(tagname.equals(date)) {
                n = iterator.nextNode();
                tagname = ((Element) n).getTagName();
                while(tagname.startsWith("item") && n != null) {
                    System.out.println("ADD: " + ((Element)n).getTextContent());
                    n = iterator.nextNode();
                    if(n != null) {
                        tagname = ((Element) n).getTagName();
                    } 
                }
            }
        }

    } catch (Exception e) {
        e.printStackTrace();
    }

The imports are:

进口是:

import java.io.StringReader;
import java.text.SimpleDateFormat;
import java.util.Date;

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

import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.traversal.DocumentTraversal;
import org.w3c.dom.traversal.NodeFilter;
import org.w3c.dom.traversal.NodeIterator;
import org.xml.sax.InputSource;