0

我正在使用 vc++ 并尝试加载一个 xml 文件并将整个数据加载到一个字符串中,但没有得到结果

 char text[700] = {""};

 TiXmlDocument doc( "'demotest.xml" );
 bool loadOkay = doc.LoadFile();
 if ( !loadOkay )
 {
    printf( "Could not load test file 'demotest.xml'. Error='%s'. Exiting.\n", doc.ErrorDesc() );
    system("PAUSE");
    exit( 1 );
}

    printf( "** Demo doc read from disk: ** \n\n" );
    printf( "** Printing via doc.Print **\n" );
    //doc.Print( stdout );

    {
        printf( "** Printing via TiXmlPrinter **\n" );
        TiXmlPrinter printer;
        doc.Accept( &printer );
        fprintf( stdout, "%s", printer.CStr() );

//upto this line its working fine in console. but when I convert this string am getting struck

        wsprintf(text, "%s", (char*)printer.CStr());
        AddLOG_message(text, 0, true);



    }

最后两行我应该得到 xml 的全部内容,包括标题、元素和值。请帮忙。

4

1 回答 1

0

我会这样做,使用更少的 C 代码、更多的 C++ 代码并弃用长度为 700 的有风险的 char 数组:

TiXmlPrinter printer;
doc.Accept( &printer );
doc.Print(); // simpler for stdout output
std::string text = printer.CStr(); // easier, safer this way
AddLOG_message( text.c_str(), 0, true );
于 2013-01-11T10:39:41.443 回答