在SAX解析时发生了空指针异常

weather.xml<?xmlversion="1.0"encoding="utf-8"?><countrys><countrysnamename="china"><c... weather.xml
<?xml version="1.0" encoding="utf-8"?>
<countrys>
<countrysname name="china">
<citys>
<city>
<name>秦皇岛</name>
<high>28</high>
<low>18</low>
<wind>三级</wind>
</city>
<city>
<name>天津</name>
<high>30</high>
<low>18</low>
<wind>二级</wind>
</city>
</citys>
</countrysname>
</countrys>
TestWeather.class
package com.view;

import java.io.*;
import org.jdom.input.SAXBuilder;
import org.jdom.Document;
import org.jdom.Element;
import java.util.List;

public class TestWeather {
public TestWeather() {
}

public static void main(String[] args) {
try {
FileInputStream fis = new FileInputStream("weather.xml");
SAXBuilder sax = new SAXBuilder();
Document doc = sax.build(fis);
Element root = doc.getRootElement();
List students = root.getChildren();
System.out.println("城市\t最高气温\t最低气温\t风速");
//在这附近有错误,可是不知道怎么改
for(int i=0;i<students.size();i++)
{
Element element = (Element)students.get(i);
String name = element.getChild("name").getText();
String high = element.getChild("high").getText();
String low = element.getChild("low").getText();
String wind = element.getChild("wind").getText();
System.out.println(name+"\t"+high+"\t"+low+"\t"+wind);
}
fis.close();
}catch(Exception ex){
ex.printStackTrace();
}

}
}
展开
leici773
2011-09-07 · TA获得超过220个赞
知道答主
回答量:185
采纳率:0%
帮助的人:108万
展开全部
找到出现空指针异常的那行代码,然后在使用指针前加上对该指针是否为空的#, #, # 这时插入null值就不会报空指针异常了
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式