码迷,mamicode.com
首页 > 编程语言 > 详细

C++ - 同步读写文本 代码(C++)

时间:2014-06-10 16:02:52      阅读:331      评论:0      收藏:0      [点我收藏+]

标签:mystra   c++   同步读写程序   读取最后一行   代码   

同步读写文本 代码(C++)


本文地址: http://blog.csdn.net/caroline_wendy


写程序: 每个2秒写入文本一个数字;

读程序: 每个5秒读入文本最后一个数字;


写程序代码:

#include <iostream>
#include <fstream>

#include <windows.h>

using namespace std;

int main (void) {

	ofstream ofs("D:/w.txt");
	int num = 0;
	while (1) {
		ofs << ++num << std::endl;
		std::cout  << num << std::endl;
		Sleep(2000);
	}

	ofs.close();

	return 0;
}

输出:

bubuko.com,布布扣


读程序代码:

/*
 * main.cpp
 *
 *  Created on: 2014.06.08
 *      Author: Spike
 */

/*vs 2012*/

#include <windows.h>
#include <fstream>
#include <iostream>
#include <string>
#include <vector>

using namespace std;

int main()
{
	vector<string> tmp_files;

	while (1) {
		Sleep(5000);
		ifstream infile( "D:/w.txt" );
		if (!infile) {
			cout << "fail!" << endl;
			return 0;
		}

		string lineContent;
		while ( getline( infile, lineContent, ‘\n‘ ) ){
			tmp_files.push_back(lineContent);
		}
		infile.close();

		std::cout << *(tmp_files.end()-1) << std::endl;
	}

	/*ofstream outfile( "w2.txt",ios::out );
	vector<string>::iterator siter = tmp_files.begin();

	copy( tmp_files.begin(), tmp_files.end()-1, ostream_iterator<string>(outfile) );
	cout << "ok!" << endl;
	outfile.close();*/

	return 0;
}

输出:

bubuko.com,布布扣



bubuko.com,布布扣


C++ - 同步读写文本 代码(C++),布布扣,bubuko.com

C++ - 同步读写文本 代码(C++)

标签:mystra   c++   同步读写程序   读取最后一行   代码   

原文地址:http://blog.csdn.net/caroline_wendy/article/details/29389477

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!