本文介绍了在第140个位置和176个位置读取长4个字节的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我是havinig文件.
文件大小1200
我正在通过ifstream读取文件.
Hi i am havinig file.
file size 1200
i am reading the file thru ifstream.
outHdrFile.seekg(0, ios::end);
long Hdrlen = outHdrFile.tellg();
ifstream::pos_type HdrPtr;
HdrPtr = Hdrlen;// - headerSize;
BYTE* HdrFileBuff = new BYTE[HdrBufferSize];
outHdrFile.seekg (140, ios::beg);
outHdrFile.read((char*)HdrFileBuff,HdrPtr);
从第140个位置读取4个字节,并将其写入具有第140个位置的临时文件中.在第140个位置6中,我必须在那里更新6100.
请告诉我如何以最少的行数进行更新.
谢谢
reading 4 bytes from 140th postion and write that into a temp file with same position 140th .in 140th position 6 is there and i have to update 6100 there.
pls tell me how to update in minimum lines.
thanks
推荐答案
这篇关于在第140个位置和176个位置读取长4个字节的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!