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

Reading binary unsigned short from a file in C++ using ifstream

我有下面的示例代码,是用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++中是对应的。

解决方案:

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 );

我想这就是你需要的。

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;
}