我想使用POCO的库提取单个节点,但无法弄清楚如何做到这一点。我是XML的新手。
XML本身看起来像这样(缩写):
<?xml version="1.0" encoding="UTF-8"?>
<!-- Created by XMLPrettyPrinter on 11/28/2012 from -->
<sbml xmlns = "http://www.sbml.org/sbml/level2/version4" level = "2" version = "4">
<model id = "cell">
<listOfSpecies>
</listOfSpecies>
<listOfParameters>
<parameter id = "kk1" value = "1"/>
</listOfParameters>
<listOfReactions>
<reaction id = "J1" reversible = "false">
... much stuff here ..
</listOfReactions>
</model>
</sbml>
我想提取listOfReactions节点中的所有内容并将其存储在std :: string中,以便以后进行MD5散列。
我试过这个:
ifstream in(JoinPath(gTestDataFolder, "Test_1.xml").c_str());
InputSource src(in);
DOMParser parser;
AutoPtr<Document> pDoc = parser.parse(&src);
NodeIterator it(pDoc, Poco::XML::NodeFilter::SHOW_ALL);
Node* pNode = it.nextNode();
while(pNode)
{
clog<<pNode->nodeName()<<endl;
string elementID = "listOfReactions";
if(pNode->nodeName() == "listOfReactions")
{
//Extract everything in this node... how???
}
pNode = it.nextNode();
}
答案 0 :(得分:4)
如果想要访问XML节点属性,首先必须查询节点以使用“hasAttributes()”检查它是否具有任何属性,然后如果确实如此,则遍历每个属性以查找其中的属性利益。
XML示例:
<?xml version="1.0"?>
<reaction id="J1" reversible="false">
C ++示例:
...
Poco::XML::NamedNodeMap* attributes = NULL;
Poco::XML::Node* attribute = NULL;
while(pNode)
{
if( (pNode->nodeName() == "reaction") && pNode->hasAttributes())
{
attributes = pNode->attributes();
for(unsigned int i = 0; i < attributes->length(); i++)
{
attribute = attributes->item(i);
cout << attribute->nodeName() << " : " << attribute->nodeValue() << endl
}
}
pNode = it.nextNode();
}
...
应输出:
id : J1
reversible : false
如果想要访问两个XML标记之间的文本,如下面的XML示例所示,首先必须找到名称与感兴趣的标记匹配的节点,如您在示例中所做的那样,然后通过调用“NextNode()”来检查下一个节点,以查看该节点是否具有节点名称“#text”或“#cdata-section”。如果是这种情况,则此“下一个节点”的值将包含XML标记之间的文本。
XML示例:
<?xml version="1.0"?>
<listOfReactions>Some text</listOfReactions>
C ++示例:
...
while(pNode)
{
if(pNode->nodeName() == "listOfReactions")
{
pNode = it.nextNode();
if(pNode->nodeName() != "#text")
{
continue; //No text node present
}
cout << "Tag Text: " << pNode->nodeValue() << endl;
}
pNode = it.nextNode();
}
...
应输出:
Some text
答案 1 :(得分:0)
尝试使用these slides,并使用Poco documentation作为API参考。
还有一个很好的tutorial here,它有一个简单易懂的例子,说明你要做什么。
答案 2 :(得分:0)
游戏后期但可能仍然有用。我正在研究Poco XML来提取xml中提供的天气数据。我发现PDF-slide @JBently作为一个很好的介绍。这提供了hpp文件。这个example涵盖了实施。我省略了LexicalHandler。
我查看字符串listOfReactions,找到后我将start-element()中的attribute-name和-value添加到字符串中。在characters()中,我将节点中的文本添加到字符串中,并将其添加到可以遍历的向量中。
输出:
id = J1,reversible = false,false move
id = J2,reversible = true,true move
我稍微更改了你的xml以进行测试,并转义双引号以便在程序中使用。
<?xml version=\"1.0\" encoding=\"UTF-8\"?><sbml xmlns = \"http://www.sbml.org/sbml/level2/version4\" level = \"2\" version = \"4\">
<model id = \"cell\">
<listOfSpecies>species</listOfSpecies>
<listOfParameters>
<parameter id = \"kk1\" value = \"1\"/>
</listOfParameters>
<listOfReactions>
<reaction id = \"J1\" reversible = \"false\">false move</reaction>
<reaction id = \"J2\" reversible = \"true\">true move</reaction>
</listOfReactions>
</model>
</sbml>
主:
#include <iostream>
#include "MyHandler.hpp"
using namespace std;
int main() {
auto s = {XML file from above};
MyHandler handler {};
Poco::XML::SAXParser parser {};
parser.setFeature(Poco::XML::XMLReader::FEATURE_NAMESPACES, false);
parser.setFeature(Poco::XML::XMLReader::FEATURE_NAMESPACE_PREFIXES, true);
parser.setContentHandler(&handler);
try {
parser.parseString(s);
} catch (Poco::Exception& e) {
cerr << e.displayText() << endl;
}
auto saved = handler.saved_reactions();
for (auto& i : saved) {
cout << i << endl;
}
return 0;
}
MyHandler.hpp:
#ifndef MYHANDLER_HPP_
#define MYHANDLER_HPP_
#include <iostream>
#include <vector>
#include <Poco/SAX/Attributes.h>
#include <Poco/SAX/ContentHandler.h>
#include <Poco/SAX/SAXParser.h>
class MyHandler: public Poco::XML::ContentHandler {
public:
MyHandler();
virtual ~MyHandler();
// ContentHandler overrides, begin.
void setDocumentLocator(const Poco::XML::Locator* loc);
void startDocument();
void endDocument();
void startElement(
const Poco::XML::XMLString&,
const Poco::XML::XMLString&,
const Poco::XML::XMLString&,
const Poco::XML::Attributes&);
void endElement(
const Poco::XML::XMLString&,
const Poco::XML::XMLString&,
const Poco::XML::XMLString&);
void characters(const Poco::XML::XMLChar ch[], int, int);
void ignorableWhitespace(const Poco::XML::XMLChar ch[], int, int);
void processingInstruction(const Poco::XML::XMLString&, const Poco::XML::XMLString&);
void startPrefixMapping(const Poco::XML::XMLString&, const Poco::XML::XMLString&);
void endPrefixMapping(const Poco::XML::XMLString&);
void skippedEntity(const Poco::XML::XMLString&);
// ContentHandler overrides, end
std::vector<std::string> saved_reactions();
private:
bool show = false;
std::string reactions_s {};
std::vector<std::string> reactions_v {};
};
#endif /* MYHANDLER_HPP_ */
MyHandler.cpp:
#include "MyHandler.hpp"
MyHandler::MyHandler() {}
MyHandler::~MyHandler() {}
void MyHandler::setDocumentLocator(const Poco::XML::Locator* loc) {
}
void MyHandler::startDocument() {
}
void MyHandler::endDocument() {
}
void MyHandler::startElement(const Poco::XML::XMLString& namespaceURI, const Poco::XML::XMLString& localName, const Poco::XML::XMLString& qname, const Poco::XML::Attributes& attributes) {
int x {0};
std::cout << "qname: " << qname << std::endl;
/* std::cout << "getValue(): " << attributes.getValue(qname) << std::endl;
std::cout << "getLength(): " << attributes.getLength() << std::endl;*/
if (qname == "listOfReactions") {
show = true;
}
if (show) {
if (attributes.getLength()) {
reactions_s.clear();
x = attributes.getLength();
for (int i = 0; i < x; ++i) {
std::cout << "getQName(): " << attributes.getQName(i) << ", getValue(): " << attributes.getValue(i) << std::endl;
if (reactions_s.size()) reactions_s += ",";
reactions_s += attributes.getQName(i) + "=" + attributes.getValue(i);
}
}
}
}
void MyHandler::endElement(const Poco::XML::XMLString& allocator,
const Poco::XML::XMLString& allocator1,
const Poco::XML::XMLString& allocator2) {
}
void MyHandler::characters(const Poco::XML::XMLChar ch[], int start, int length) {
std::cout << std::string(ch + start, length) << std::endl;
if (show) {
reactions_s += "," + std::string(ch + start, length);
reactions_v.emplace_back(reactions_s);
}
}
void MyHandler::ignorableWhitespace(const Poco::XML::XMLChar ch[], int start, int length) {
}
void MyHandler::processingInstruction(const Poco::XML::XMLString& allocator, const Poco::XML::XMLString& allocator1) {
}
void MyHandler::startPrefixMapping(const Poco::XML::XMLString& allocator, const Poco::XML::XMLString& allocator1) {
}
void MyHandler::endPrefixMapping(const Poco::XML::XMLString& allocator) {
}
std::vector<std::string> MyHandler::saved_reactions() {
return reactions_v;
}
void MyHandler::skippedEntity(const Poco::XML::XMLString& allocator) {
}
答案 3 :(得分:-1)
在文件“hello.xml”
中假设下面的XML<root>
<headers>
<header>Hello</header>
<header>World</header>
</headers>
</root>
因此可以解析这个问题: -
#include <string>
#include <sstream>
#include <Poco/Exception.h>
#include <Poco/AutoPtr.h>
#include <Poco/Util/XMLConfiguration.h>
using namespace std;
using namespace Poco;
using namespace Poco::Util;
int main(int argc, char*argv[]) {
int counter = 0;
AutoPtr apXmlConf(new XMLConfiuration("hello.xml"));
try {
while(1) { // Loop breaks by Poco exception
stringstream tag;
tag << "headers.header[" << counter++ << "]";
string header = apXmlConf->getString(tag.str());
cout << header << " ";
}
} catch(NotFoundException& e) { (void)e; }
cout << endl;
return 0;
}
希望有所帮助。