我正在尝试使用WriteFile函数将wstring写入UTF-8文件。 我希望文件中包含这些字符“ÑÁ”,但我得到的是“ ”。
这是代码
#include <iostream>
#include <cstdlib>
#include <sstream>
#include <string>
#include <fstream>
#include <windows.h>
#include <wchar.h>
#include <stdio.h>
#include <winbase.h>
using namespace std;
const char filepath [] = "unicode.txt";
int main ()
{
wstring str;
str.append(L"ÑÁ");
wchar_t* wfilepath;
// Create a file to work with Unicode and UTF-8
ofstream fs;
fs.open(filepath, ios::out|ios::binary);
unsigned char smarker[3];
smarker[0] = 0xEF;
smarker[1] = 0xBB;
smarker[2] = 0xBF;
fs << smarker;
fs.close();
//Open and write in the file with windows functions
mbstowcs(wfilepath, filepath, strlen(filepath));
HANDLE hfile;
hfile = CreateFileW(TEXT(wfilepath), GENERIC_WRITE, 0, NULL,
OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
wstringbuf strBuf (str, ios_base::out|ios::app);
DWORD bytesWritten;
DWORD dwBytesToWrite = (DWORD) strBuf.in_avail();
WriteFile(hfile, &strBuf, dwBytesToWrite, &bytesWritten, NULL);
CloseHandle(hfile);
}
我使用此命令行在cygwin上编译它:
g++ -std=c++11 -g Windows.C -o Windows
答案 0 :(得分:3)
您需要先将UTF-16数据转换为UTF-8,然后再将其写入文件。
并且无需使用std::ofstream
创建文件,关闭它,然后使用CreateFileW()
重新打开它。只需打开文件一次,然后写下您需要的所有内容。
试试这个:
#include <iostream>
#include <cstdlib>
#include <string>
//#include <codecvt>
//#include <locale>
#include <windows.h>
#include <wchar.h>
#include <stdio.h>
using namespace std;
LPCWSTR filepath = L"unicode.txt";
string to_utf8(const wstring &s)
{
/*
wstring_convert<codecvt_utf8_utf16<wchar_t>> utf16conv;
return utf16conv.to_bytes(s);
*/
string utf8;
int len = WideCharToMultiByte(CP_UTF8, 0, s.c_str(), s.length(), NULL, 0, NULL, NULL);
if (len > 0)
{
utf8.resize(len);
WideCharToMultiByte(CP_UTF8, 0, s.c_str(), s.length(), &utf8[0], len, NULL, NULL);
}
return utf8;
}
int main ()
{
wstring str = L"ÑÁ";
// Create a UTF-8 file and write in it using Windows functions
HANDLE hfile = CreateFileW(filepath, GENERIC_WRITE, 0, NULL,
CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
if (hfile != INVALID_HANDLE_VALUE)
{
unsigned char smarker[3];
DWORD bytesWritten;
smarker[0] = 0xEF;
smarker[1] = 0xBB;
smarker[2] = 0xBF;
WriteFile(hfile, smarker, 3, &bytesWritten, NULL);
string strBuf = to_utf8(str);
WriteFile(hfile, strBuf.c_str(), strBuf.size(), &bytesWritten, NULL);
CloseHandle(hfile);
}
return 0;
}
答案 1 :(得分:1)
问题出在这里:
wstringbuf strBuf (str, ios_base::out|ios::app);
WriteFile(hfile, &strBuf, dwBytesToWrite, &bytesWritten, NULL);
&strBuf
是wstringbuf
对象的地址,其中包含指向内容的指针,缓冲区位置和状态标志......而不是其内容所在的位置。
你可能想要
WriteFile(hfile, &str[0], /* etc */
但这只会存储wstring
使用的相同编码。要使用UTF-8编写,您可能需要使用WideCharToMultiByte
(或wcstombs
,因为您已经使用过mbstowcs
)。
答案 2 :(得分:0)
Ben是正确的,您将原始wchar_t
写入文件,而不是UTF-8。
要编写UTF-8,您可以考虑留在C ++中并执行此操作:
std::locale loc (std::locale(), new std::codecvt_utf8<wchar_t>);
std::wofstream fs ("unicode.txt");
fs.imbue(loc);
fs << L"ÑÁ";