将unicode字符/字符串写入文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将unicode字符/字符串写入文件相关的知识,希望对你有一定的参考价值。
我正在尝试使用std::wofstream
将unicode字符写入文件,但put
或write
函数不会写任何字符。
示例代码:
#include <fstream>
#include <iostream>
int main()
{
std::wofstream file;
file.open("output.txt", std::ios::app);
if (file.is_open())
{
wchar_t test = L'й';
const wchar_t* str = L"фывдлао";
file.put(test);
file.write(str, sizeof(str));
file.close();
}
else
{
std::wcerr << L"Failed to open file" << std::endl;
}
std::cin.get();
return 0;
}
output.txt
文件为空,执行代码后没有写入wchar / string,为什么?我究竟做错了什么?
编辑:核心代码:
#include <fstream>
#include <iostream>
int main()
{
std::wofstream file;
file.open("output.txt", std::ios::app);
if (file.is_open())
{
wchar_t test = L'й';
const wchar_t* str = L"фывдлао";
file.put(test);
if (!file.good())
{
std::wcerr << L"Failed to write" << std::endl;
}
file.write(str, 8);
file.close();
}
else
{
std::wcerr << L"Failed to open file" << std::endl;
}
std::cin.get();
return 0;
}
在应用代码校正之后,我提出了Failed to write
,但我仍然不明白我需要做什么来编写宽字符串和字符?
答案
第一个问题立即发生:put
无法写入宽字符,流将失败,但是你永远不会检查第一次写入是否成功:
file.put(test);
if(not file.good())
{
std::wcerr << L"Failed to write" << std::endl;
}
第二个问题是sizeof(str)
以字节为单位返回指针的大小,而不是以字节为单位返回字符串的大小。
另一答案
我用这种方式工作,不需要外部字符串库,如QString!
唯一使用std库和c ++ 11
#include <iostream>
#include <locale>
#include <codecvt>
#include <fstream>
#include <Windows.h>
int main()
{
std::wofstream file;
// locale object is responsible of deleting codecvt facet!
std::locale loc(std::locale(), new std::codecvt_utf16<wchar_t> converter);
file.imbue(loc);
file.open("output.txt"); // open file as UTF16!
if (file.is_open())
{
wchar_t BOM = static_cast<wchar_t>(0xFEFF);
wchar_t test_char = L'й';
const wchar_t* test_str = L"фывдлао";
file.put(BOM);
file.put(test_char);
file.write(test_str, lstrlen(test_str));
if (!file.good())
{
std::wcerr << TEXT("Failed to write") << std::endl;
}
file.close();
}
else
{
std::wcerr << TEXT("Failed to open file") << std::endl;
}
std::wcout << TEXT("Done!") << std::endl;
std::cin.get();
return 0;
}
文件输出:
yfıvdlao
以上是关于将unicode字符/字符串写入文件的主要内容,如果未能解决你的问题,请参考以下文章
使用 CodeGear C++ Builder 2009 将 unicode 字符串写入文件
如何将 unicode 写入 txt? Python [重复]
如何在 R Windows 中将 Unicode 字符串写入文本文件?