RapidXml を使用して .x3d ドキュメントを解析しようとしています。残念ながら、ノード属性の最初の 100 文字しか表示されません。ドキュメントを調べたところ、属性値の長さに制限はないようです。
Xcode で RapidXml を使用しています。動的メモリ割り当てが xcode コンパイラで機能しない可能性がありますか? 他の誰かがこれに遭遇しましたか?この制限を克服する方法はありますか?
myfile.open(location.c_str(), std::ifstream::in);
if (myfile.is_open())
{
while ( myfile.good() )
{
getline (myfile,line);
text += line;
}
myfile.close();
}
text += "\0";
rapidxml::xml_document<> doc;
char *temp = new char[text.length() + 1];
strcpy(temp, text.c_str());
doc.parse<rapidxml::parse_no_data_nodes>(temp);
//why doesnt this work?
rapidxml::xml_node<>* root = doc.first_node();
rapidxml::xml_node<> *indexedfaceset = getChild(root, "IndexedFaceSet");
rapidxml::xml_attribute<> *indices = indexedfaceset->first_attribute("coordIndex");
rapidxml::xml_node<> *coordinate = getChild(indexedfaceset, "Coordinate");;
rapidxml::xml_attribute<> *coords = coordinate->first_attribute("point");
std::string indices_string = indices->value(); //gets cut off
int isize = indices->value_size(); //this is 108, although the string is longer
std::string coords_string = coords->value(); //gets cut off
int csize = indices->value_size(); //this is also 108, different size from indices
ありがとう!