代码如下:
/*
* ===========================================================================
*
* Filename: ParseXML.cpp
*
* Description: This is an example of the use of Xerces-C++ operation XML.
*
* Version: 1.0
* Created: 03/01/2010 09:44:19 AM
* Revision: none
* Compiler: gcc
*
* Author: huabo (caodaijun), caodaijun@feinno.com
* Company: feinno
*
* ===========================================================================
*/
#include
#include
#include
#include
#include
#include
#include
#include
#include
#if defined(XERCES_NEW_IOSTREAMS)
#include
#else
#include
#endif
XERCES_CPP_NAMESPACE_USE
class XStr
{
public:
XStr(const char* const toTranscode)
{
fUnicodeForm = XMLString::transcode(toTranscode);
}
~XStr()
{
XMLString::release(&fUnicodeForm);
}
const XMLCh* unicodeForm() const
{
return fUnicodeForm;
}
private:
XMLCh* fUnicodeForm;
};
#define X(str) XStr(str).unicodeForm()
std::string xml_string =
"100000abcd";
std::string basic_string = "good";
int main(int argC, char*argV[])
{
// Initialize the XML4C2 system.
try
{
XMLPlatformUtils::Initialize();
}
catch(const XMLException& toCatch)
{
char *pMsg = XMLString::transcode(toCatch.getMessage());
XERCES_STD_QUALIFIER cerr << "Error during Xerces-c Initialization.\n"
<< " Exception message:"
<< pMsg;
XMLString::release(&pMsg);
return 1;
}
DOMImplementation* impl = DOMImplementationRegistry::getDOMImplementation(X("LS"));
DOMLSSerializer* theSerializer = ((DOMImplementationLS*)impl)->createLSSerializer();
DOMLSOutput *theOutputDesc = ((DOMImplementationLS*)impl)->createLSOutput();
MemBufFormatTarget* target = new MemBufFormatTarget();
theOutputDesc->setByteStream(target);
if (impl != NULL)
{
try
{
XercesDOMParser* parser = new XercesDOMParser();
MemBufInputSource* xml_mem = new MemBufInputSource(
(const XMLByte* )xml_string.c_str(),
xml_string.length(),
"xml",
false);
parser->parse( *xml_mem );
DOMDocument* xml_doc = parser->getDocument();
DOMElement* xml_root = xml_doc->getDocumentElement();
if (NULL == xml_root)
{
std::cout<< "Empty XML document!\n";
exit(1);
}
//输出整个文档
std::cout<< XMLString::transcode(theSerializer->writeToString((DOMNode* )xml_root))<< std::endl;
//输出XPATH指定的结点
DOMXPathNSResolver* resolver = xml_doc->createNSResolver(xml_root);
DOMXPathResult* result = xml_doc->evaluate(
X("/corporation/basic"),
xml_root,
resolver,
DOMXPathResult::ORDERED_NODE_SNAPSHOT_TYPE,
NULL);
result->snapshotItem(0);
DOMNode* curentNode = result->getNodeValue();
DOMNode* prevNode = curentNode->getParentNode();
theSerializer->write(curentNode, theOutputDesc);
std::cout<< target->getRawBuffer()<< std::endl;
//replace the basic child
MemBufInputSource* basic_mem = new MemBufInputSource(
(const XMLByte* )basic_string.c_str(),
basic_string.length(),
"basic",
false);
parser->parse( *basic_mem );
DOMDocument* basic_doc = parser->getDocument();
DOMElement* basic_root = basic_doc->getDocumentElement();
DOMNode* newnode = xml_doc->importNode((DOMNode* )basic_root, true);
prevNode->replaceChild(newnode, curentNode);
//再次输出整个文档
std::cout<< XMLString::transcode(theSerializer->writeToString((DOMNode* )xml_root))<< std::endl;
delete basic_mem;
delete xml_mem;
delete target;
delete parser;
result->release();
resolver->release();
theOutputDesc->release();
theSerializer->release();
}
catch(const OutOfMemoryException&)
{
XERCES_STD_QUALIFIER cerr << "OutOfMemoryException" << XERCES_STD_QUALIFIER endl;
}
catch (const DOMException& e)
{
XERCES_STD_QUALIFIER cerr << "DOMException code is: " << e.code << XERCES_STD_QUALIFIER endl;
}
catch (...)
{
XERCES_STD_QUALIFIER cerr << "An error occurred creating the document" << XERCES_STD_QUALIFIER endl;
}
}
else
{
XERCES_STD_QUALIFIER cerr << "Requested implementation is not supported" << XERCES_STD_QUALIFIER endl;
}
XMLPlatformUtils::Terminate();
return 0;
}
阅读(4489) | 评论(1) | 转发(0) |