代码如下:
/*
* ===========================================================================
*
* Filename: CreateXML.cpp
*
* Description: This is an example of the use of Xerces-C++ operation XML.
*
* Version: 1.0
* Created: 02/28/2010 11:48:26 AM
* Revision: none
* Compiler: gcc
*
* Author: huabo (caodaijun), caodaijun@feinno.com
* Company: feinno
*
* ===========================================================================
*/
#include <xercesc/util/PlatformUtils.hpp>
#include <xercesc/util/XMLString.hpp>
#include <xercesc/dom/DOM.hpp>
#include <xercesc/util/OutOfMemoryException.hpp>
#include <xercesc/framework/MemBufFormatTarget.hpp>
#include <xercesc/framework/StdOutFormatTarget.hpp>
#include <xercesc/framework/MemBufInputSource.hpp>
#include <xercesc/parsers/XercesDOMParser.hpp>
#include <string>
#if defined(XERCES_NEW_IOSTREAMS)
#include <iostream>
#else
#include <iostream.h>
#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 basic_string =
"<basic>"
"<corp_name>abcd</corp_name>"
"<corp_code></corp_code>"
"<c0></c0>"
"<short_name></short_name>"
"<calling_code></calling_code>"
"<legal_representative></legal_representative>"
"<address></address>"
"<zip></zip>"
"<telephone></telephone>"
"<fax></fax>"
"<contact></contact>"
"<proportion_code></proportion_code>"
"<logo_crc></logo_crc>"
"<employee_portrait_crc></employee_portrait_crc>"
"<group_portrait_crc></group_portrait_crc>"
"<createtime></createtime>"
"<opentime></opentime>"
"<province_code></province_code>"
"<vgop_code></vgop_code>"
"<org_version></org_version>"
"<source_code></source_code>"
"<client_dept_version></client_dept_version>"
"<version_id></version_id>"
"<contact_mp></contact_mp>"
"</basic>";
std::string rules_string =
"<rules>"
"<order_flag></order_flag>"
"<demo_flag></demo_flag>"
"<useroperate_limit></useroperate_limit>"
"<emp_portrait_flag></emp_portrait_flag>"
"<iplmt></iplmt>"
"<dept_auth_switch></dept_auth_switch>"
"<sms_block></sms_block>"
"<sms_begin></sms_begin>"
"<sms_end></sms_end>"
"<edit_status></edit_status>"
"<expire_time></expire_time>"
"</rules>";
std::string accounts_string =
"<accounts>"
"<scale_code></scale_code>"
"<customer_manager></customer_manager>"
"<manager_phone></manager_phone>"
"<deposit_bank></deposit_bank>"
"<bank_accounts></bank_accounts>"
"<password_paper_id></password_paper_id>"
"<group_code></group_code>"
"<sms_code></sms_code>"
"<meeting_code></meeting_code>"
"<fee_code></fee_code>"
"<cycle_code></cycle_code>"
"<sharedisk_code></sharedisk_code>"
"<sp_status></sp_status>"
"<updatetime></updatetime>"
"</accounts>";
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
{
DOMDocument* doc = impl->createDocument(
0, // root element namespace URI.
X("corporation"), // root element name
0); // document type object (DTD).
doc->setXmlStandalone(true);
DOMElement* rootElem = doc->getDocumentElement();
rootElem->setAttribute(X("xmlns"), X("com:cmcc:corporation"));
rootElem->setAttribute(X("xmlns:xsi"), X("http://www.w3.org/2001/XMLSchema-instance"));
rootElem->setAttribute(X("xsi:schemaLocation"), X("com:cmcc:corporation corporation.xsd"));
//add node
DOMElement* prodElem = doc->createElement(X("eid"));
rootElem->appendChild(prodElem);
DOMText* prodDataVal = doc->createTextNode(X("100000"));
prodElem->appendChild(prodDataVal);
XercesDOMParser* parser = new XercesDOMParser();
//add basic child
MemBufInputSource* basic_mem = new MemBufInputSource(
(const XMLByte* )basic_string.c_str(),
strlen(basic_string.c_str()),
"basic",
false);
parser->parse( *basic_mem );
DOMDocument* xmlDoc = parser->getDocument();
DOMElement* basic_root = xmlDoc->getDocumentElement();
DOMNode* newnode = doc->importNode((DOMNode* )basic_root, true);
rootElem->appendChild(newnode);
delete basic_mem;
//add the rules child
MemBufInputSource* rules_mem = new MemBufInputSource(
(const XMLByte* )rules_string.c_str(),
rules_string.length(),
"rules",
false);
parser->parse( *rules_mem );
xmlDoc = parser->getDocument();
DOMElement* rules_root = xmlDoc->getDocumentElement();
newnode = doc->importNode((DOMNode* )rules_root, true);
rootElem->appendChild(newnode);
delete rules_mem;
//add the accounts child
MemBufInputSource* accounts_mem = new MemBufInputSource(
(const XMLByte* )accounts_string.c_str(),
accounts_string.length(),
"accounts",
false);
parser->parse( *accounts_mem );
xmlDoc = parser->getDocument();
DOMElement* accounts_root = xmlDoc->getDocumentElement();
newnode = doc->importNode((DOMNode* )accounts_root, true);
rootElem->appendChild(newnode);
delete accounts_mem;
theSerializer->write(doc, theOutputDesc);
std::cout<< target->getRawBuffer()<< std::endl;
delete target;
delete parser;
theOutputDesc->release();
theSerializer->release();
doc->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;
}
<!-- <div class="Blog_con3_1">管理员在2009年8月13日编辑了该文章文章。</div> -->/*
* ===========================================================================
*
* Filename: CreateXML.cpp
*
* Description: This is an example of the use of Xerces-C++ operation XML.
*
* Version: 1.0
* Created: 02/28/2010 11:48:26 AM
* Revision: none
* Compiler: gcc
*
* Author: huabo (caodaijun), caodaijun@feinno.com
* Company: feinno
*
* ===========================================================================
*/
#include <xercesc/util/PlatformUtils.hpp>
#include <xercesc/util/XMLString.hpp>
#include <xercesc/dom/DOM.hpp>
#include <xercesc/util/OutOfMemoryException.hpp>
#include <xercesc/framework/MemBufFormatTarget.hpp>
#include <xercesc/framework/StdOutFormatTarget.hpp>
#include <xercesc/framework/MemBufInputSource.hpp>
#include <xercesc/parsers/XercesDOMParser.hpp>
#include <string>
#if defined(XERCES_NEW_IOSTREAMS)
#include <iostream>
#else
#include <iostream.h>
#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 basic_string =
"<basic>"
"<corp_name>abcd</corp_name>"
"<corp_code></corp_code>"
"<c0></c0>"
"<short_name></short_name>"
"<calling_code></calling_code>"
"<legal_representative></legal_representative>"
"<address></address>"
"<zip></zip>"
"<telephone></telephone>"
"<fax></fax>"
"<contact></contact>"
"<proportion_code></proportion_code>"
"<logo_crc></logo_crc>"
"<employee_portrait_crc></employee_portrait_crc>"
"<group_portrait_crc></group_portrait_crc>"
"<createtime></createtime>"
"<opentime></opentime>"
"<province_code></province_code>"
"<vgop_code></vgop_code>"
"<org_version></org_version>"
"<source_code></source_code>"
"<client_dept_version></client_dept_version>"
"<version_id></version_id>"
"<contact_mp></contact_mp>"
"</basic>";
std::string rules_string =
"<rules>"
"<order_flag></order_flag>"
"<demo_flag></demo_flag>"
"<useroperate_limit></useroperate_limit>"
"<emp_portrait_flag></emp_portrait_flag>"
"<iplmt></iplmt>"
"<dept_auth_switch></dept_auth_switch>"
"<sms_block></sms_block>"
"<sms_begin></sms_begin>"
"<sms_end></sms_end>"
"<edit_status></edit_status>"
"<expire_time></expire_time>"
"</rules>";
std::string accounts_string =
"<accounts>"
"<scale_code></scale_code>"
"<customer_manager></customer_manager>"
"<manager_phone></manager_phone>"
"<deposit_bank></deposit_bank>"
"<bank_accounts></bank_accounts>"
"<password_paper_id></password_paper_id>"
"<group_code></group_code>"
"<sms_code></sms_code>"
"<meeting_code></meeting_code>"
"<fee_code></fee_code>"
"<cycle_code></cycle_code>"
"<sharedisk_code></sharedisk_code>"
"<sp_status></sp_status>"
"<updatetime></updatetime>"
"</accounts>";
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
{
DOMDocument* doc = impl->createDocument(
0, // root element namespace URI.
X("corporation"), // root element name
0); // document type object (DTD).
doc->setXmlStandalone(true);
DOMElement* rootElem = doc->getDocumentElement();
rootElem->setAttribute(X("xmlns"), X("com:cmcc:corporation"));
rootElem->setAttribute(X("xmlns:xsi"), X("http://www.w3.org/2001/XMLSchema-instance"));
rootElem->setAttribute(X("xsi:schemaLocation"), X("com:cmcc:corporation corporation.xsd"));
//add node
DOMElement* prodElem = doc->createElement(X("eid"));
rootElem->appendChild(prodElem);
DOMText* prodDataVal = doc->createTextNode(X("100000"));
prodElem->appendChild(prodDataVal);
XercesDOMParser* parser = new XercesDOMParser();
//add basic child
MemBufInputSource* basic_mem = new MemBufInputSource(
(const XMLByte* )basic_string.c_str(),
strlen(basic_string.c_str()),
"basic",
false);
parser->parse( *basic_mem );
DOMDocument* xmlDoc = parser->getDocument();
DOMElement* basic_root = xmlDoc->getDocumentElement();
DOMNode* newnode = doc->importNode((DOMNode* )basic_root, true);
rootElem->appendChild(newnode);
delete basic_mem;
//add the rules child
MemBufInputSource* rules_mem = new MemBufInputSource(
(const XMLByte* )rules_string.c_str(),
rules_string.length(),
"rules",
false);
parser->parse( *rules_mem );
xmlDoc = parser->getDocument();
DOMElement* rules_root = xmlDoc->getDocumentElement();
newnode = doc->importNode((DOMNode* )rules_root, true);
rootElem->appendChild(newnode);
delete rules_mem;
//add the accounts child
MemBufInputSource* accounts_mem = new MemBufInputSource(
(const XMLByte* )accounts_string.c_str(),
accounts_string.length(),
"accounts",
false);
parser->parse( *accounts_mem );
xmlDoc = parser->getDocument();
DOMElement* accounts_root = xmlDoc->getDocumentElement();
newnode = doc->importNode((DOMNode* )accounts_root, true);
rootElem->appendChild(newnode);
delete accounts_mem;
theSerializer->write(doc, theOutputDesc);
std::cout<< target->getRawBuffer()<< std::endl;
delete target;
delete parser;
theOutputDesc->release();
theSerializer->release();
doc->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;
}
相关推荐
Xerces-C++是Apache软件基金会的一个重要项目,它是一款高效且可移植的XML文档解析器,支持多种编程语言,其中包括我们这里的焦点——C++。标题中的"xerces-c-3.2.3.zip"指示的是Xerces-C++的3.2.3版本,专为64位...
Xerces是由Apache组织所推动的一项XML文档解析开源项目,它目前有多种语言版本包括JAVA、C++、PERL、COM等。[1] Xerces是一个开放源代码的XML语法分析器。从JDK1.5以后,Xerces就成了JDK的XML默认实现 Xerces-C++ 的...
首先,我们来看Xerces-C++的核心功能——XML解析。Xerces-C++支持XML 1.0和1.1标准,能够解析XML文档并将其转换为内存中的数据结构。它的解析过程分为两个主要阶段:词法分析和语法分析。词法分析将XML文档分解为一...
此外,Xerces-J还支持XML Schema(XSD)验证,提供了一个完整的XML Schema处理器,可以对XML文档进行严格的语义检查。通过使用XMLReader的setSchema方法,可以指定XML Schema文件,确保解析的XML数据符合预设的规则...
然而,对于大型、复杂的XML文档或者需要高性能解析的情况,可能需要考虑使用更强大的XML解析库,如pugixml、Xerces-C++或 RapidXML。但总体而言,TinyXML对于初学者和小型项目来说,是一个理想的XML解析工具。
你可以通过它加载XML文件,或者创建一个新的XML文档并添加元素。 2. **TiXmlElement**:这个类表示XML文档中的一个元素。元素是XML文档的基本构建块,可以包含属性和子元素。你可以通过TiXmlElement来创建、修改和...
DOM解析器会将整个XML文档加载到内存中,并创建一个`Document`对象,便于后续操作。 - **优点**:保持了XML文档中元素间的结构关系,便于数据查询和操作。 - **缺点**:对于大型文档来说可能导致内存溢出,效率较...
在Linux环境下安装飞鸽软件的过程中,我们需要注意一个关键的依赖性——XML解析器。XML(Extensible Markup Language)是一种用于标记数据的语言,广泛应用于配置文件、数据交换和文档存储等领域。飞鸽作为一款应用...
这个库由C++编程语言实现,它依赖于另一个知名的开源项目——Xerces-C,一个符合XML 1.0和1.1标准的解析器。Xerces-C为XQilla提供了强大的XML解析功能,使得开发者能够高效地处理XML文档,进行复杂的查询和数据提取...