login007的备忘录
好吧,这里只是我用来静下心,做好记录的地方。
#include "boost/program_options/detail/utf8_codecvt_facet.hpp"

int test()
{
std::wifstream f(L"测试.xml");
std::locale utf8Locale(std::locale(),new boost::program_options::detail::utf8_codecvt_facet());
f.imbue(utf8Locale);

if(f)
{
boost::property_tree::read_xml(f,pt);
std::wstring text = pt.get(L"test",L"");
MessageBox(NULL,text.c_str(),L"",MB_OK);
}
}

  

posted on 2011-12-17 14:55  login007  阅读(662)  评论(0编辑  收藏  举报