关于C++读写文件的,本人菜鸟,请求大神

Dream_Debugging 2014-03-04 07:45:30
一个这样的txt文档。里面全是十六进制的数据0X12 0X25 0X36 0X58 0X66 0X78 0X45 0X19 0X46 0X75.怎样用C++读取出来然后以十进制写到另一个txt文档里面。
...全文
81 5 打赏 收藏 转发到动态 举报
写回复
用AI写文章
5 条回复
切换为时间正序
请发表友善的回复…
发表回复
JiMoKuangXiangQu 2014-03-05
  • 打赏
  • 举报
回复
下面这个例子可能满足lz的要求:
#include <fstream>
#include <iomanip>
#include <iostream>

using namespace std;

int main()
{
	ifstream ifile("HexInputSample.txt");
	ofstream ofile("DecOutput.txt");

	unsigned int n;
	while (ifile >> hex >> n)
		ofile << n << " ";

	ifile.close();
	ofile.close();

	return 0;
}
HexInputSample.txt:
0x12 0x13 0x15
0xa3
0x23 
JiMoKuangXiangQu 2014-03-05
  • 打赏
  • 举报
回复
有个简单的示例代码以及配套的输入样本文件,供参考。
#include <fstream>
#include <iomanip>
#include <iostream>

using namespace std;

int main()
{
	ifstream ifile("HexInputSample.txt");

	unsigned int ui;
	while (ifile >> hex >> ui)
		cout << "0x" << hex << ui << ' ';

	ifile.close();

	return 0;
}
输入样本文件 HexInputSample.txt:
0x12 0x13 0x15
0xa3
0x23 
供参考。
JiMoKuangXiangQu 2014-03-05
  • 打赏
  • 举报
回复
ifstream + >> 就可以了。 可以贴一个样本文件出来,不同组织形式可能需要采取不同读取方式。 ******************* * 个人建议,仅供参考。* *******************
百曉生 2014-03-05
  • 打赏
  • 举报
回复
lz参考一下这个吧——http://bbs.csdn.net/topics/100139407
ganmaojiushijiu 2014-03-05
  • 打赏
  • 举报
回复

#include <iostream>
#include <fstream>
#include <string>
#include <cstdlib>

using namespace std;

void ReadHex(const char* filename,ostream& out)
{
	ifstream ifile(filename);
	if(!ifile){
		out<<"打开文件失败\n";
	}
	int data;
	while(ifile>>hex>>data){
		out<<dec<<data<<" ";
	}
} 
 
int main()
{
	string name;
	cin>>name;
	ReadHex(name.c_str(),cout);
	system("pause");
	return 0;
} 

64,646

社区成员

发帖
与我相关
我的任务
社区描述
C++ 语言相关问题讨论,技术干货分享,前沿动态等
c++ 技术论坛(原bbs)
社区管理员
  • C++ 语言社区
  • encoderlee
  • paschen
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
  1. 请不要发布与C++技术无关的贴子
  2. 请不要发布与技术无关的招聘、广告的帖子
  3. 请尽可能的描述清楚你的问题,如果涉及到代码请尽可能的格式化一下

试试用AI创作助手写篇文章吧