我正在尝试在运行时读取大型二进制文件,以为输入重定向(stdin
),并且stdin
是强制性的。
./a.out < input.bin
到目前为止,我已经使用了fgets。但是fgets跳过空格和换行符。我要同时包括两者。我的
currentBuffersize
可以动态变化。FILE * inputFileStream = stdin;
int currentPos = INIT_BUFFER_SIZE;
int currentBufferSize = 24; // opt
unsigned short int count = 0; // As Max number of packets 30,000/65,536
while (!feof(inputFileStream)) {
char buf[INIT_BUFFER_SIZE]; // size of byte
fgets(buf, sizeof(buf), inputFileStream);
cout<<buf;
cout<<endl;
}
提前致谢。
最佳答案
如果是我,我可能会做类似的事情:
const std::size_t INIT_BUFFER_SIZE = 1024;
int main()
{
try
{
// on some systems you may need to reopen stdin in binary mode
// this is supposed to be reasonably portable
std::freopen(nullptr, "rb", stdin);
if(std::ferror(stdin))
throw std::runtime_error(std::strerror(errno));
std::size_t len;
std::array<char, INIT_BUFFER_SIZE> buf;
// somewhere to store the data
std::vector<char> input;
// use std::fread and remember to only use as many bytes as are returned
// according to len
while((len = std::fread(buf.data(), sizeof(buf[0]), buf.size(), stdin)) > 0)
{
// whoopsie
if(std::ferror(stdin) && !std::feof(stdin))
throw std::runtime_error(std::strerror(errno));
// use {buf.data(), buf.data() + len} here
input.insert(input.end(), buf.data(), buf.data() + len); // append to vector
}
// use input vector here
}
catch(std::exception const& e)
{
std::cerr << e.what() << '\n';
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
请注意,您可能需要以二进制模式重新打开
stdin
,但不确定它的可移植性,但是各种文档建议在整个系统中都应有很好的支持。关于c++ - 通过输入重定向读取二进制文件C++的最佳方法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39757354/