在使用oss c++ sdk 时 使用ListObjects返回的中文文件夹乱码
#include
#include
std::wstring utf8string2wstring(const std::string& str) { static std::wstring_convert > strCnv; return strCnv.from_bytes(str); }
因为返回的是UTF8格式,所以要进行编码转换。用上面的函数将 object.Key() 转换成wstring ,这样中文就不乱吗了。
赞0
踩0