0

私はxmlファイルを解析しようとしています:

<?xml version="1.0"?>
<settings>
    <output>test.dat</output>
    <width>5</width>
    <depth>4</depth>
    <height>10</height>
</settings>

主要:

int _tmain(int argc, wchar_t* argv[])
{
    std::string SettingsFile = "settings.xml";
    rapidxml::xml_document<> doc;
    char* settings = FileHandler::readFileInChar(SettingsFile.c_str());

    std::cout << strlen(settings); // Output 1
    doc.parse<0 | rapidxml::parse_no_data_nodes>(settings);
    std::cout << strlen(settings); // Output 2

    ....
}

出力1:129

出力2:31

ヘルパー関数:

static char* readFileInChar(const char* p_pccFile) 
{
    char* cpBuffer;
    size_t sSize;

    std::ifstream ifFileToRead;
    ifFileToRead.open(p_pccFile, std::ios::binary);

    if(ifFileToRead.is_open()) {
        sSize = getFileLength(&ifFileToRead);

        cpBuffer = new char[sSize+1];
        ifFileToRead.read(cpBuffer, sSize);
        ifFileToRead.close();
    }

    cpBuffer[sSize] = '\0';

    return cpBuffer;
}

static size_t getFileLength(std::ifstream* file) 
{
    file->seekg(0, std::ios::end);
    size_t length = file->tellg();
    file->seekg(0, std::ios::beg);

    return length;
}

これにより、ノードにアクセスしようとすると例外が発生します。ここで明らかな何かが欠けていると思いますが、今のところわかりません。

私が次のようなことを試みた場合:

std::cout << doc.first_node("output")->value();

位置0x00000004の読み取り中にアクセス違反が発生したというメッセージが表示されます。

4

1 に答える 1

0

ドキュメントには、「output」という名前のノードがありません。ドキュメントには「settings」という名前のノードがあり、そのノードには「output」という名前のノードがあります。次のコード

  std::ifstream file("settings.xml");
  std::vector<char> content = std::vector<char>(std::istreambuf_iterator<char>(file), std::istreambuf_iterator<char>());
  content.push_back('\0');

  rapidxml::xml_document<> doc;
  doc.parse<0 | rapidxml::parse_no_data_nodes>(&content[0]);

  rapidxml::xml_node<> * root = doc.first_node();
  for (rapidxml::xml_node<> * node = root->first_node(); node; node = node->next_sibling())
  {
    std::cout << "value of <" << node->name() << "> is " << node->value() << std::endl;
  }

プリント

value of <output> is test.dat
value of <width> is 5
value of <depth> is 4
value of <height> is 10

私のマシンで。

編集:デバッガーで「コンテンツ」を見ると、rapidxmlが「\0」を挿入する場所を明確に確認できます。

于 2012-09-17T14:24:44.170 に答える