使用ifstream从C ++文件中读取二进制无符号short

时间:2015-01-10 23:38:56

标签: c++ c binaryfiles

我有以下用C语言编写的示例代码 以下代码的功能从jpg图像文件中读取前两个字节。

unsigned short buff;
FILE *file;
file = fopen("image.jpg", "rb");
if(file != NULL){
    fread(&buff, sizeof(unsigned short), 1, file);
    fclose(file);
    printf("%X\n", buff);
}else{
    printf("File does not exists.");
}

结果:
D8FF

这是我尝试用C ++编写的内容:

char fBuff[4];
ifstream file("image.jpg", ios::binary);
if(file.is_open()){
    file.read(fBuff, sizeof(char)*4);
}else{
    cout << "File does not exists." << endl ;
}

for(int i=0;i<4;i++)
    cout << ios_base::hex << fBuff[i];

c ++代码中的问题,它给我的数据不正确。

我想要的是,将fread()更改为C ++中对应的相应函数。 但是其他函数如fopenfcloseprintf等,我知道C ++中的对应函数。

2 个答案:

答案 0 :(得分:3)

我认为这就是你所需要的。

std::ifstream  file;
unsigned short buff;

file.open("image.jpg", std::ios::in | std::ios::binary);
if (file.is_open() == true)
{
    if (file.read(reinterpret_cast<char *>(&buff), sizeof(buff)) != 0)
        std::cout << std::hex << std::uppercase << buff << std::endl;
    file.close();
} else {
    std::cout << "File does not exists" << std::endl;
}

答案 1 :(得分:0)

解决方案:

istream& read (char* s, streamsize n)

s - Pointer to an array where the extracted characters are stored.
n - Number of characters to extract.


reinterpret_cast<char *> might be needed for some people

这就像fread一样读取文件。

istream& get (streambuf& sb, char delim);

istream& getline (char* s, streamsize n );