使用java,我如何从网站读取xml文件,然后将xml文件中的数据放入JList中?
这是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>
我试图弄清楚如何做,例如,在8月30日,将aug30标签中的项目1和2放入JList中,并在8月31日,将项目1, 2 和 3 从 aug31 标签到同一个 JList 中。
Here's the idea of the xml file:
<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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
干得好。这仅查找基于日期的部分。我没有展示添加到 JList,因为这很简单。只需更改打印 ADD 的打印语句即可。
进口产品为:
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.
The imports are: