Computer >> Máy Tính >  >> Lập trình >> C ++

Làm thế nào để đọc nội dung tệp vào istringstream trong C ++?

Đây là một chương trình C ++ để đọc nội dung tệp thành dòng isstringstream trong C ++.

Ví dụ

#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();
}

Đầu ra

hi tutorialspoint