由於以文本方式和二進制方式讀取回車符,讀取的長度都為為2,而我需要的是字符個數,下面兩種方法經過調試,並且結果正確。
第一種方法: 也可以讀取一個不定長的文件。
FILE *pFile = fopen( pFilePath, "r" );
if ( pFile == NULL )
{
return 0;
}
fseek( pFile, 0, SEEK_END );
iFileLen = ftell( pFile );
rewind( pFile );
m_pFileText = new char[iFileLen+1];
fread( m_pFileText, 1, iFileLen, pFile );
m_pFileText[iFileLen] = 0;
fclose( pFile );
第二種方法:
// 計算字符個數
FILE *pFile = fopen( pFilePath, "r" );
char ch;
int num = 0;
while ( ch = getc( pFile ) != EOF )
{
num++ ;
}
fclose( pFile );