gpt4 book ai didi

c++ - swprintf 和 fwprintf 以及 %c 格式

转载 作者:行者123 更新时间:2023-11-30 05:33:04 26 4
gpt4 key购买 nike

wide char printf 单个字符发生了什么? VS10 和 MCBS:

#include<stdio.h>
#include <windows.h>
int const maxPathFolder = MAX_PATH - 3;
wchar_t const *delims = L"T";
wchar_t *testString = L"Codepage is: ";
int main()
{
FILE *stream = NULL;

UINT CP = GetConsoleOutputCP();
wchar_t *testName= (wchar_t *)calloc(maxPathFolder, sizeof(wchar_t));
wcscat_s(testName, maxPathFolder, L"C:\\printemp.txt");
stream = _wfopen(testName, L"w");

if (fwprintf(stream, L"%s%i%c", testString, CP, delims) == EOF) wprintf(L"Problems writing to File.");
fclose (stream);
swprintf (testName, L"%s%i%c", testString, CP, delims);
free (testName);
}

printemp.txt 中的输出是 Codepage is: 850? swprintf'd testName 中的 delims 变量是 Han character 坠 .根据 Igor 在 this post 中的评论, 宽阔的溪流看起来有点 splinter 。

最终目的是将宽字符数组输出到文件,文件由分隔符分隔。有办法绕过它吗?

最佳答案

代码页大部分已经过时,Unicode 取而代之。这里的问题和之前一样,试图以Text/ANSI模式打开Unicode文件。

由于您已将其标记为 c++,因此您可以只使用标准库、std::wstringstd::wfstream,避免令人头疼的 c 字符串分配。

#include <iostream>
#include <fstream>
#include <string>
#include <io.h> //for _setmode
#include <fcntl.h> //for _O_U16TEXT

int main()
{
//optional: for non-local languages on console
_setmode(_fileno(stdout), _O_U16TEXT);

//write to file (overwrite old file if any)
wchar_t wbuf[128];
std::wofstream fout(L"path.txt", std::ios::binary);
if (fout)
{
fout.rdbuf()->pubsetbuf(wbuf, 128);
fout << L"ελληνικά\n";
fout << L"English\n";
fout << 123 << "\n";
fout.close();
}

std::wifstream fin(L"path.txt", std::ios::binary);
if (fin)
{
fin.rdbuf()->pubsetbuf(wbuf, 128);
std::wstring wstr;
while (getline(fin, wstr, L'\n')) std::wcout << wstr << L"\n";
fin.close();
}

return 0;
}

为了与记事本等其他软件兼容,您必须在文件开头添加字节顺序标记:

fout << L"\xFEFF";

然后在读取文件时跳过第一个字符(前2个字节)。

如果 std::wstring 不是一个选项,则使用 new/delete 运算符而不是 malloc

wchar_t *testName = new wchar_t[MAX_PATH];
...
delete[] testName;

关于c++ - swprintf 和 fwprintf 以及 %c 格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34921704/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com