Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

C++에서 파일 내용을 istringstream으로 읽는 방법은 무엇입니까?

<시간/>

다음은 C++에서 파일 내용을 isstringstream으로 읽는 C++ 프로그램입니다.

예시

#include <fstream>
#include <sstream>
#include<iostream>
using namespace std;
int main() {
   ifstream is("a.txt", ios::binary );
   // get length of file:
   is.seekg (0, std::ios::end);
   long length = is.tellg();
   is.seekg (0, std::ios::beg);
   // allocate memory:
   char *buffer = new char [length];
   // read data as a block:
   is.read (buffer,length);
   // create string stream of memory contents
   istringstream iss( string( buffer ) );
   cout<<buffer;
   // delete temporary buffer
   delete [] buffer;
   // close filestream
   is.close();
}

출력

hi tutorialspoint