C에서 파일 바이트를 Char 배열로 검색하는 방법
getline()을 사용하지 않고 파일 바이트를 char 배열로 읽으려면 다음을 고려하세요. ifstream::read()를 사용합니다. 다음 단계를 따르세요.
파일 열기:
<code class="cpp">std::ifstream infile("C:\MyFile.csv");</code>
파일 길이 가져오기:
<code class="cpp">infile.seekg(0, std::ios::end); size_t length = infile.tellg(); infile.seekg(0, std::ios::beg);</code>
버퍼 크기 확인:
<code class="cpp">if (length > sizeof (buffer)) { length = sizeof (buffer); }</code>
파일 읽기:
<code class="cpp">infile.read(buffer, length);</code>
추가 참고 사항:
업데이트된 접근 방식(2019):
읽는 동안 발생할 수 있는 오류를 고려하려면 다음 접근 방식을 고려하세요.
<code class="cpp">size_t chars_read; if (!(infile.read(buffer, sizeof(buffer)))) { if (!infile.eof()) { // Handle error during reading } } chars_read = infile.gcount(); // Get actual number of bytes read</code>
위 내용은 getline() 없이 C에서 파일 바이트를 Char 배열로 읽는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!