0

我正在使用 Google Places api,我正在尝试解析 XML 数据以获取包括评级在内的许多内容。唯一的问题是有时没有评级标签(如下所示)。我该如何解决这个问题?

<name>Zari</name>
<type>restaurant</type>
<type>food</type>
<type>establishment</type>
<formatted_address>212-214 Ifield Drive,            Crawley, United Kingdom</formatted_address>
<geometry>
<location>
 <lat>51.1218980</lat>
   <lng>-0.2135630</lng>
 </location>
 </geometry>
<rating>3.3</rating>
 </result>

 <result>
<name>Happy Meeting</name>
<type>restaurant</type>
<type>food</type>
<type>establishment</type>
<formatted_address>
<geometry>
<location>
<lat>51.1161600</lat>
<lng>-0.1844890</lng>
</location>
</geometry>
</result>
<result>
4

1 回答 1

0

只需检查您是否收到口粮。例如,如果您正在解析这样的数据

    String temp=null;
    int rating;
        if (localName.equals("rating")){ //this code won't work if rating tag is
                                        // not present thus temp will be null

                    temp = attributes.getValue("rating");
                    rating = Integer.parseInt(temp);
    }

现在进一步检查您的代码

if(temp==null){
rating=0; //or any that you want
}
于 2013-06-08T08:37:53.087 回答