问题描述
我有一个包含一组行的文件。一个
文件 1:
"Hello How are you"
"The cat ate the mouse"
基于用户输入的行的开头和结尾。我想转到文件中的每一行并提取它。
例如,如果用户键入1、17 ,那么我必须转到大小为17 个字符的第1行。他可以给出文件中的任何行号。
我从文件 C++ 的特定位置阅读了以下答案。但我真的不明白。为什么线的大小必须相同?如果我有关于文件中每一行的开头和结尾的信息。为什么我不能直接访问它?
源代码
我尝试使用以下代码,该代码受使用 Seekg 从文件中指定位置读取数据的启发,但我无法提取行,为什么?
#include <fstream>
#include <iostream>
using namespace std::
void getline(int, int, const ifstream & );
int main()
{
//open file1 containing the sentences
ifstream file1("file1.txt");
int beg = 1;
int end = 17;
getline(beg,end, file1);
beg = 2;
end = 20;
getline(beg,end, file1);
return 0;
}
void getline(int beg, int end, const ifstream & file)
{
file.seekg(beg, ios::beg);
int length = end;
char * buffer = new char [length];
file.read (buffer,length);
buffer [length - 1] = '\0';
cout.write (buffer,length);
delete[] buffer;
}