从网上看了看教程,然后自己又根据需要做了一些调整,因为我要配合加解密,很多数据都是十六进制的,就需要把char强转化为unsigned char类型。
C++ read()和write()读写二进制文件(超级详细) http://c.biancheng.net/view/7603.html
二进制文件读取
#include <iostream>
#include <cstdio>
#include <fstream>
#include <cstring>
#include <string>
using namespace std;
int main()
{
unsigned char str[110];
char c;
int i, clen;
char fileName[64];
printf("\n请输入要读取的二进制文件名,该文件必须和本程序在同一个目录\n");
scanf("%s", fileName);
ifstream file(fileName, ios::out | ios::binary);
if (!file)
{
cout << "Error opening file.";
return 0;
}
i = 0;
while(file.read((char *)&str[i], sizeof(unsigned char))){
printf("%x ",str[i]);
i++;
}
file.close();
return 0;
}
二进制文件存储
int main()
{
unsigned char str[110];
char tmp[110];
int len, i;
scanf("%s",tmp);
len = strlen(tmp);
for(i = 0; i < len; i ++){
str[i] = tmp[i];
printf("%x ",str[i]);
}
ofstream file("nums.dat", ios::out | ios::binary);
for(i = 0; i < len; i ++){
file.write((char*)&str[i], sizeof(unsigned char));
}
file.close();
}
顺便再说一下unsigned char和char,我个人感觉是unsigned char在各种类型转换上更有优势,但是平时用起来更别扭,看了篇博文,里边把这两者的差异说的挺清楚的。
c语言中 char* 和 unsigned char* 的区别浅析 https://blog.csdn.net/guotianqing/article/details/77341657
|