如何在android中读取和显示特定的xml数据

时间:2014-06-04 12:06:43

标签: java android xml

我只想知道哪个游戏正在播放。

一个网址是 - > wwww.something.com/data.xml是

<?xml version="1.0" encoding="UTF-8"?>
<Cricket>
   <WC Group="A" Day="Sunday">
      <DayMatch>Aus Vs Ind</DayMatch>
      <NightMatch>Ban Vs S A</Night>
   </WC>
   <WC Group="A" Day="Monday">
      <DayMatch>Ind Vs Ban</DayMatch>
      <NightMatch>Aus Vs S A</NightMatch>
   </WC>
     <WC Group="B" Day="Sunday">
      <DayMatch>Eng VS NZ</DayMatch>
      <NightMatch>Pak Vs Zim</NightMatch>
   </WC>
   <WC Group="B" Day="Monday">
      <DayMatch>Pak VS Eng</DayMatch>
      <NightMatch>Zim Vs NZ </NightMatch>
   </WC>
</Cricket>

现在,我已经给输入组A和Day Mondday,然后我想要输出A组和星期一全天候和夜间游戏夹具:

    Ind Vs Ban
    Aus Vs S A
你能说出任何想法吗?如何在xml中访问group和day值。

2 个答案:

答案 0 :(得分:0)

为每个组声明id。根据id和组名,你可以在代码上写条件。

答案 1 :(得分:0)

使用SAX Parser解析此文件,并将其放入您必须创建的WC模型列表中,如此List<WC>,然后在此列表中搜索<​​/ p>