一个简单的函数,用于在开头创建一个声明节点,并创建一个名为“ List”的elementNode,其中包含26个elementNode,每个名为“ IP”,带有字符串数据类型的随机IPv4地址作为该节点的值。随机ip来自具有所有26个IP的存储向量。 IP和矢量没有问题,因为它可以在控制台上正确输出。
为了确保在调用该方法之后这些节点仍然存在,我将它们从函数外部存储在向量中,即使我很确定它不会对此进行任何更改。
我尝试在循环内声明ip字符串,并将值也分配给循环内的变量,因为它可能已经显示了信息。它不会改变任何东西。
此外,我也尝试使用数字作为字符串来不同地命名每个IP节点。最糟糕的是它会输出纯垃圾。
我得到了一些使我的问题变得更好的提示,所以我编辑了代码。现在一切都已成为主体,仅此而已。
#include <string>
#include <vector>
#include <iostream>
#include <fstream>
#include <sstream>
#include <Dependencies/Rapidxml/rapidxml.hpp>
#include <Dependencies/Rapidxml/rapidxml_utils.hpp>
#include <Dependencies/Rapidxml/rapidxml_print.hpp>
#include "IPV4.h"
int8_t ComputerQty = 25;
std::vector<rapidxml::xml_node<>*> IPVec;
std::vector<IPV4> IPVector;
std::string FilePath = "C:/Users/Bob/Documents/Visual Studio 2017/Projects/UtryonWithIrrLicht/Files/IPList.xml";
int main(int argc, char** argv)
{for (size_t A = 0; A < ComputerQty + 1; A++)
{IPV4 NewIP = IPV4();
NewIP.SetRandomIP();
IPVector.push_back(NewIP);
bool IpCollision = true;
while (IpCollision)
{IpCollision = false;
size_t Size = IPVector.size();
for(size_t B = 0; B < Size; B++)
{if (A != B)
{if (IPVector[A].GetIP() == IPVector[B].GetIP())
{IpCollision = true;
if (A < B)
{IPVector[B].SetRandomIP();}
}
}
}
}
}
rapidxml::xml_document<> Doc;
rapidxml::xml_node<>* Decl = Doc.allocate_node(rapidxml::node_declaration);
Decl->append_attribute(Doc.allocate_attribute("version", "1.0"));
Decl->append_attribute(Doc.allocate_attribute("encoding", "utf-8"));
Doc.append_node(Decl);
rapidxml::xml_node<>* List = Doc.allocate_node(rapidxml::node_element, "List");
Doc.append_node(List);
for (size_t A = 0; A < ComputerQty + 1; A++)
{std::cout << "IPVector[A].GetIP() = " << IPVector[A].GetIP() << std::endl;
IPVec.push_back(Doc.allocate_node(rapidxml::node_element, "IP", IPVector[A].GetIP().c_str()));
List->append_node(IPVec[A]);
}
std::ofstream theFile(FilePath);
theFile << Doc;
theFile.close();
Doc.clear();
}
首先,这些奇怪的字符是什么,它们来自何处? 从来没有见过那样的东西。 那么,为什么会有一些IP缺失呢? 最后为什么它总是相同的IP?
答案 0 :(得分:0)
我自己找到了答案。
事实证明,Node构造函数不接受std :: string,尽管您可以这样做,并且在任何地方都不会引发错误。它只会产生难看的输出。将std :: string作为参数传递给构造函数时,必须将其包装在allocate_string(my_string)
函数中。似乎RapidXML以某种方式处理了字符串并将其修改为所需的格式。我做到了,输出是完美的。
我刚刚更改了这一行:
IPVec.push_back(Doc.allocate_node(rapidxml::node_element,
"IP",
IPVector[A].GetIP().c_str()));
针对该行:
IPVec.push_back(Doc.allocate_node(rapidxml::node_element,
"IP",
Doc.allocate_string(IPVector[A].GetIP().c_str()));