C++如何把一个文本文件读取然后以二进制形式另存为一个文本文件
1个回答
展开全部
不知道你是不是想问的这个,可以参考一下
#include <fstream>
#include <iostream>
#include <string>
using namespace std;
int main() {
ifstream fileIn("readfile.txt");
ofstream fileOut("writefile.txt", ofstream::binary);
string inputs;
while (getline(fileIn,inputs)) {
fileOut << inputs << endl;
}
fileIn.close();
fileOut.close();
}
追问
谢谢。我的意思是把原文本文件的数据存储为二进制文件,第二个文本文件就是二进制文件
追答
是二进制啊,写入模式设定为ofstream::binary了,虽然不是特别确定你要的二进制是不是这样的二进制
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询