用VC++6.0编写BASE64编码转换程序时遇到的小问题?
发布网友
发布时间:2022-05-19 16:34
我来回答
共1个回答
热心网友
时间:2023-10-14 20:49
1.定义结构数组指针
struct bit_struct
{
unsigned data1:6;
unsigned data2:6;
unsigned data3:6;
unsigned data4:6;
};//定义3个8位变量的结构用来读\存文件用
bit_struct *pbit_struct;
---------------------------
2.读取文件*.dat的长度(字节数)
DWORD dwFileLen=file.GetLength();
//file 是在打开文件时声明的CFile的对象
//CFile file;
-------------------------
3.定义结构数组的尺寸
DWORD dwstrLen=dwFileLen*8/24;
//dwstrLen是你定义的结构体的字节数(注意:不是结构数组的字节数)
pbit_struct=new SiWei[dwstrLen];
//定义结构数组的尺寸
-------------------------
4.从文件中以24位向结构数组中写入
file.Read(pstr,dwFileLen);
--------------------------
5.将数值转为相应的字符
先略,让我想一想
比如:000000 000010 000010 000001 输出为accb 这里,我不太明白.
如果accb是数值的话,应该对应的二进制为
1010110011001011
如果accb是字符,对应的二进制为
1100001 1100011 1100011 1100010
你是想怎样转换呀!
-----------------------------
6.向文件中写入转换后的数据
file.Write(pstr,dwFileLen);
//这条语句我没有查,你自已查一下吧