我需要能够读取/写入包含中文字符的文件 unicode 字符串。
文档说 CFile::typeUnicode “仅在派生类中使用”,但我找不到对使用它的任何派生类的任何引用。
是否有任何“官方”版本的 CFile 可以让我读写 unicode?
或者我最好尝试使用这样的东西:http: //www.codeproject.com/Articles/4119/CStdioFile-derived-class-for-multibyte-and-Unicode
我需要能够读取/写入包含中文字符的文件 unicode 字符串。
文档说 CFile::typeUnicode “仅在派生类中使用”,但我找不到对使用它的任何派生类的任何引用。
是否有任何“官方”版本的 CFile 可以让我读写 unicode?
或者我最好尝试使用这样的东西:http: //www.codeproject.com/Articles/4119/CStdioFile-derived-class-for-multibyte-and-Unicode
这似乎是一种更简单的方法:请参阅How to Read and Write Text Files in Unicode through CStdioFile,它使用FILE
流以 Unicode 格式打开文件,然后CStdioFile
使用该流打开一个类。
//
// For Writing
//
// Old-Style... do not use...
//CStdioFile f;
//f.Open(_T("\test.txt"), CFile::modeCreate | CFile::modeWrite);
// Open the file with the specified encoding
FILE *fStream;
errno_t e = _tfopen_s(&fStream, _T("\test.txt"), _T("wt,ccs=UNICODE"));
if (e != 0) return; // failed..
CStdioFile f(fStream); // open the file from this stream
f.WriteString(_T("Test"));
f.Close();
//
// For Reading
//
// Open the file with the specified encoding
FILE *fStream;
errno_t e = _tfopen_s(&fStream, _T("\test.txt"), _T("rt,ccs=UNICODE"));
if (e != 0) return; // failed..CString sRead;
CStdioFile f(fStream); // open the file from this stream
CString sRead;
f.ReadString(sRead);
f.Close();
您还可以考虑使用不同的课程来为您完成所有艰苦的工作。我使用CTextFileDocument:
您可以使用提供的CTextFileWrite写入多种 Unicode 风格。例子:
//Create file. Use UTF-8 to encode the file
CTextFileWrite myfile(_T("samplefile.txt"),
CTextFileWrite::UTF_8 );
ASSERT(myfile.IsOpen());
//Write some text
myfile << "Using 8 bit characters as input";
myfile.WriteEndl();
myfile << L"Using 16-bit characters. The following character is alfa: \x03b1";
myfile.WriteEndl();
CString temp = _T("Using CString.");
myfile << temp;