分类: C/C++
2008-04-02 14:52:53
characters | endDocument | startDocument | endElement | startElement |
ignorableWhitespace | startPrefixMapping | processingInstruction | skippedEntity |
HRESULT characters( [in] const wchar_t * pwchChars, [in] int cchChars); pwchChars获取字符串信息。 cchChars获取该字符串长度。
HRESULT startDocument(); 该函数表明开始解析文档。
HRESULT startElement( [in] const wchar_t * pwchNamespaceUri, [in] int cchNamespaceUri, [in] const wchar_t * pwchLocalName, [in] int cchLocalName [in] const wchar_t * [in] int cchQName); [in] ISAXAttributes * pAttributes); pwchNamespaceUri获取命名空间URI。 cchNamespaceUri获取URI的长度。 pwchLocalName获取标记。 cchLocalName获取标记长度。 pwchQName获取QName。 cchQName获取QName长度。 pAttributes获取元素属性信息。
由于元素属性并不固定,需要用如下方法获取。 pAttributes->getLength(&l); for ( int i=0; i四、 使用ContentHandler:getLocalName(i,&ln,&lnl); prt(L" %s=", ln, lnl); pAttributes->getValue(i,&vl,&vll); prt(L"\"%s\"", vl, vll); }
HERO_XMLContentHandler* pHero_XML; ISAXXMLReaderPtr pReader = NULL; HRESULT hr; CHR(pReader.CreateInstance(__uuidof(SAXXMLReader))); //Only one content handler can be registered at a time. pHero_XML=HERO_XMLContentHandler::CreateInstance(); //生成HERO_XMLContentHandler对象。 CHR(pReader->putContentHandler(pHero_XML)); //注册HERO_XMLContentHandler处理器。 CHR(pReader->parseURL(L"hero.xml"));//解析路径。 CHR(pReader->putContentHandler(NULL));