我已经通过rapidXML源自己工作并设法读取一些值。现在我想更改它们并将它们保存到我的XML文件中:
解析文件并设置指针
void SettingsHandler::getConfigFile() {
pcSourceConfig = parsing->readFileInChar(CONF);
cfg.parse<0>(pcSourceConfig);
}
从XML中读取值
void SettingsHandler::getDefinitions() {
SettingsHandler::getConfigFile();
stGeneral = cfg.first_node("settings")->value();
/* stGeneral = 60 */
}
更改值并保存到文件
void SettingsHandler::setDefinitions() {
SettingsHandler::getConfigFile();
stGeneral = "10";
cfg.first_node("settings")->value(stGeneral.c_str());
std::stringstream sStream;
sStream << *cfg.first_node();
std::ofstream ofFileToWrite;
ofFileToWrite.open(CONF, std::ios::trunc);
ofFileToWrite << "<?xml version=\"1.0\"?>\n" << sStream.str() << '\0';
ofFileToWrite.close();
}
将文件读入缓冲区
char* Parser::readFileInChar(const char* p_pccFile) {
char* cpBuffer;
size_t sSize;
std::ifstream ifFileToRead;
ifFileToRead.open(p_pccFile, std::ios::binary);
sSize = Parser::getFileLength(&ifFileToRead);
cpBuffer = new char[sSize];
ifFileToRead.read( cpBuffer, sSize);
ifFileToRead.close();
return cpBuffer;
}
但是,无法保存新值。我的代码只是保存原始文件的值为“60”,它应该是“10”。
RGDS 莱恩
答案 0 :(得分:2)
我认为这是RapidXML Gotcha
尝试将parse_no_data_nodes
标记添加到cfg.parse<0>(pcSourceConfig)
答案 1 :(得分:1)
您绝对应该测试输出文件是否正确打开以及您的写入是否成功。最简单的是,你需要这样的东西:
if ( ! ofFileToWrite << "<?xml version=\"1.0\"?>\n"
<< sStream.str() << '\0' ) {
throw "write failed";
}
请注意,您不需要'\ 0'终结符,但不应该造成任何伤害。
答案 2 :(得分:1)
使用以下方法将属性添加到节点。该方法使用来自rapidxml的字符串的内存分配。因此,只要文档处于活动状态,rapidxml就会处理字符串。有关详细信息,请参阅http://rapidxml.sourceforge.net/manual.html#namespacerapidxml_1modifying_dom_tree。
void setStringAttribute(
xml_document<>& doc, xml_node<>* node,
const string& attributeName, const string& attributeValue)
{
// allocate memory assigned to document for attribute value
char* rapidAttributeValue = doc.allocate_string(attributeValue.c_str());
// search for the attribute at the given node
xml_attribute<>* attr = node->first_attribute(attributeName.c_str());
if (attr != 0) { // attribute already exists
// only change value of existing attribute
attr->value(rapidAttributeValue);
} else { // attribute does not exist
// allocate memory assigned to document for attribute name
char* rapidAttributeName = doc.allocate_string(attributeName.c_str());
// create new a new attribute with the given name and value
attr = doc.allocate_attribute(rapidAttributeName, rapidAttributeValue);
// append attribute to node
node->append_attribute(attr);
}
}