我需要使用CreateFile
中的ReadFile
和<Windows.h>
方法计算文件中的数字。
以下是我所拥有的:
int CountDigitsInFile(PCTSTR path)
{
HANDLE hFile = CreateFile(path, GENERIC_READ, 0, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
if (hFile == INVALID_HANDLE_VALUE)
{
_tprintf_s(TEXT("Open File Error"));
return NULL;
}
TCHAR data[100];
DWORD dwRead;
DWORD dwFileSize = GetFileSize(hFile, NULL);
BOOL bResultRead = ReadFile(hFile, &data, dwFileSize, &dwRead, NULL);
if (!bResultRead || dwRead != dwFileSize)
{
_tprintf_s(TEXT("Read file Error"));
return NULL;
}
_tprintf_s(data); // prints the file content correctly
int count = 0;
wstring str(data);
std::cout << str.size() << std::endl; // prints 105 when file content is the following: Hello, World!5
for (int i = 0; i < str.size(); ++i) // fails somewhere here
if (isdigit(str[i]))
count++;
CloseHandle(hFile);
return count;
}
可能我以错误的方式计算它们并且我必须逐字节计算?而且我认为我真的不应该在这里使用wstring
,只需在读取文件时计算数字就可以了。
你能帮帮我吗?
这是我在运行程序时得到的结果:
答案 0 :(得分:1)
您不需要创建std :: string的额外复杂程度,您已经以char数组的形式获得它,并且您可以使用dwRead
,这是没有。 ReadFile()读取的字节数。
for (int i = 0; i < dwRead; ++i)
if (iswdigit(data[i]))
count++;
答案 1 :(得分:1)
阅读https://msdn.microsoft.com/en-us/library/wt3s3k55.aspx
中的以下注释wchar_t的大小是实现定义的。如果您的代码依赖于wchar_t为特定大小,请检查平台的实现(例如,使用sizeof(wchar_t))。如果您需要一个字符串字符类型,其宽度保证在所有平台上保持不变,请使用string,u16string或u32string。
如果您确定您的文件不包含任何unicode或多字节字符,则最好通过char解析char