#include <stdio.h>
#include <windows.h>
int main(int argc, char** argv)
{
DWORD bytes_read;
char buffer[65536];
LPSTR str;
ReadFile(GetStdHandle(STD_INPUT_HANDLE), buffer, 65536, &bytes_read, NULL);
str = malloc(bytes_read);
memcpy(str, buffer, bytes_read);
FILE *f = fopen("file.txt", "w");
fprintf(f, "stdin: %s", str);
fprintf(f, "hardcoded: %s\n", "á");
fclose(f);
return 0;
}
通过echo á|.\Program.exe
在Powershell中运行时,file.txt的内容为:
stdin: ?
ýýýýhardcoded: á
我有兴趣用从stdin检索的正确字符替换问号
答案 0 :(得分:0)
Stdin显然使用CP437字符集。以这种编码重新加载文件显示正确的字符