【C++】windows下使用c++将数据输出到文件 —— 9

   日期:2020-11-05     浏览:89    评论:0    
核心提示:一、函数功能将得到的数据输出到指定路径文件内二、代码#include <iostream>#include <windows.h>#include <process.h> #include <fstream>#include <ctime>#include <direct.h>using namespace std;#define MAX_PATH 1000int main() { double a =

一、函数功能

将得到的数据输出到指定路径文件内

二、代码

#include <iostream>
#include <windows.h>
#include <process.h> 
#include <fstream>
#include <ctime>
#include <direct.h>

using namespace std;

#define MAX_PATH 1000

int main() 
{ 
	double a = 15.5;
	double b = 22.5;
	int c = 0;

	char buffer[MAX_PATH];
	_getcwd(buffer, MAX_PATH);	//当前路径为 D:\vs_test\test2\test2
	cout << "当前路径为: " << buffer << endl << endl;

	//1.相关数据输出文件的建立
	//string pathname = "D:\\vs_test\\test2\\FileData\\"; //绝对路径
	string pathname = "..\\FileData\\";	//相对路径
	time_t t = time(0);
	char ch[64];
	strftime(ch, sizeof(ch), "%Y-%m-%d %H-%M-%S", localtime(&t)); //年-月-日 时-分-秒
	std::string paitent_info = "test_";
	ofstream test_value(pathname + paitent_info + "joint_" + ch + ".txt", ios::app | ios::out);

	test_value << " a(N.m) " << " b(N.m) " << endl;

	//2.循环,打印数据
	while (c < 10) { 
		a += 1;
		b += 2;
		c++;
		test_value << " " << a << " " << b << std::endl;
		printf("a = %f\n", a);
	}	

	//3.文件关闭
	test_value.close();
	return 0;
}

三、代码讲解

  1. _getcwd(buffer, MAX_PATH);
    1)函数功能:获取文件的当前路径。
    2)在Windows VS2017环境下,头文件是#include <direct.h>

  2. string pathname = "D:\\vs_test\\test2\\FileData\\"; 这是设置绝对路径,将我们要输出的数据保存在FileData这个文件夹下

  3. string pathname = "..\\FileData\\"; 这是设置相对路径。

  4. strftime(ch, sizeof(ch), "%Y-%m-%d %H-%M-%S", localtime(&t));得到当前时间:年-月-日 时-分-秒

  5. ofstream test_value(pathname + paitent_info + "joint_" + ch + ".txt", ios::app | ios::out);
    生成文件,文件的名称是:“test_”+“joint_”+“时间”+“.txt”,
    即:test_joint_2020-11-03 09-42-29.txt

  6. 在循环里面,将数据a、b储存在文件test_joint_2020-11-03 09-42-29.txt

  7. test_value.close();关闭文件

四、打印结果

  1. 运行之后,结果为:

  2. 文件路径:

  3. 文件内容:

 
打赏
 本文转载自:网络 
所有权利归属于原作者,如文章来源标示错误或侵犯了您的权利请联系微信13520258486
更多>最近资讯中心
更多>最新资讯中心
0相关评论

推荐图文
推荐资讯中心
点击排行
最新信息
新手指南
采购商服务
供应商服务
交易安全
关注我们
手机网站:
新浪微博:
微信关注:

13520258486

周一至周五 9:00-18:00
(其他时间联系在线客服)

24小时在线客服