C++/Matlab_文件读取与写入以及相对路径,绝对路径

一、C++的文件读取操作

  c++如果不进行配置,一般只能方便的读取txt格式,excel需要进行配置(尚未配置成功,如果下次用到一定会努力弄好╥﹏╥)

这次这两篇参考都十分详细

https://www.cnblogs.com/lauzhishuai/p/5452643.html

http://c.biancheng.net/view/294.html

C++ 通过以下几个类支持文件的输入输出:

  • ifstream: 读操作(输入)的文件类(由istream引申而来)

           ifstream inFile;
           inFile.open("c:\\tmp\\test.txt", ios::in);

  • ofstream: 写操作(输出)的文件类 (由ostream引申而来)

           ofstream oFile;
           oFile.open("test1.txt", ios::out);

  • fstream: 可同时读写操作的文件类 (由iostream引申而来)

           fstream ioFile;
           ioFile.open("..\\test3.txt", ios::out | ios::in | ios::trunc);

#include 
#include 
#include 
using namespace std;
int main()
{
	//以只读的方式打开
	ifstream inFile;
	inFile.open("c:\\tmp\\test.txt", ios::in);  //全路径
	if (inFile)  //条件成立,返回true ,则说明文件打开成功
		inFile.close();
	else
		cout << "test.txt doesn't exist" << endl;
	//以写入的方式打开
	ofstream oFile;
	oFile.open("test1.txt", ios::out);   //当前文件夹下的文件
	if (!oFile)  //条件成立,则说明文件打开出错
		cout << "error 1" << endl;
	else
		oFile.close();
	oFile.open("tmp\\test2.txt", ios::out | ios::in); //相对路径,当前文件夹的 tmp 子文件夹中
	if (oFile)  //条件成立,则说明文件打开成功
		oFile.close();
	else
		cout << "error 2" << endl;
	//可同时读写操作的文件类
	fstream ioFile;
	ioFile.open("..\\test3.txt", ios::out | ios::in | ios::trunc);//相对路径,代表上一层文件夹
	if (!ioFile)
		cout << "error 3" << endl;
	else
		ioFile.close();

	system("pause");
	return 0;
}

二、Matlab的文件读取与操作

load 加载本地文件

    在我们这次项目中,需要把数据先在matlab进行预处理,然后udp通信,最后matlab还需要加载接收端生成的文件进行画图处理,所以有必要建立一个数据共享空间,只要把文件的路径设置一下就好了,比如相对路径的上层文件夹

    load ' XXX.txt '   加载本程序目录下的 txt 文件

    load '..\datashare\201610241623.mat'    % 加载上一层文件目录下的 datashare 文件夹 ,从里面读取数据

    

你可能感兴趣的:(C++)