我正在学习如何使用SAX构建器解析xml数据,我正在关注this tutorial,问题是当我实现下面显示的startElement
方法时,eclipse强调了Attributes
参数用红色表示Attributes cannot be resolved to a type
请让我知道如何解决它
码:
public void startElement(String uri, String localName,String qName, Attributes attributes) throws SAXException {
System.out.println("Start Element :" + qName);
if (qName.equalsIgnoreCase("FIRSTNAME")) {
bfname = true;
}
if (qName.equalsIgnoreCase("LASTNAME")) {
blname = true;
}
if (qName.equalsIgnoreCase("NICKNAME")) {
bnname = true;
}
if (qName.equalsIgnoreCase("SALARY")) {
bsalary = true;
}
}
答案 0 :(得分:0)
添加以下导入:
import org.xml.sax.Attributes;
答案 1 :(得分:0)
我想我应该导入以下内容:
import org.xml.sax.Attributes