c++TXT 파일 을 읽 고 쓰 는 방법

2917 단어 c + +TXT
다음 과 같다.

#include "stdafx.h"
#include <iostream> 
//        <fstream>   
#include <fstream> 
#include <iomanip> 
using namespace std;
 
int main()
{
	//ifstream        ifstream       ,        
	ifstream myfile("c://a.txt");
	//ofstream        ofstream       ,        
	ofstream outfile("c://b.txt");
 
	fstream fin1("file1.txt", ios::in);
 
 
 
	/*********************************************************************************************************/
	//      
	//       ( visual stdio 2017   ,      .vcxproj          )
	if (!fin1) {
 
		//    , cout   ,           cerr,         cerr    
		cerr << "    " << endl;
		system("pause");
		return -1;
	}
	else {
		cout << "    " << endl;
		//      
		if (outfile.is_open())
		{
			char linestring[100];
 
			//memset   socket        . :   memset(buffer, 0, sizeof(buffer))
			//memset(linestring, 0, 100);
 
			//file.good()                 ,               false;
			//eof           ,  False,           ,
			//          ,       ,       ,eof  True
			if (myfile.good() && !myfile.eof()) {
 
				//   info.txt   ,  linestring
				myfile.getline(linestring, 100);
 
				//          ,    '/0'   
				for (int i = 0; linestring[i] != 0; i++)  
					//  ASCII ,           
					if (linestring[i] >= 65 && linestring[i] <= 90 || linestring[i] >= 97 && linestring[i] <= 122) { 
						//            
						outfile.put(linestring[i]);
						cout << linestring[i] << "";
					}
				cout << endl;
				outfile.close();
			}			
		}	
	}
 
 
	/*********************************************************************************************************/
	//      
	char ch;
	//           
	ifstream infile("f1.dat", ios::in); 
 
	//       
	if (!infile) {
		cerr << "open error!" << endl;
		exit(1);
	}
	//     f3.dat   
	ofstream outfile("f3.dat"); 
	if (!outfile) {
		cerr << "open error!" << endl;
		exit(1);
	}
	//          
	while (infile.get(ch)) {
		if (ch <= 122 && ch >= 97)
			ch = ch - 32;
		outfile.put(ch);
		cout << ch;
	}
	cout << endl;
	infile.close();
	outfile.close();
 
	system("pause");
 
	return 0;
}
 
이 c++는 TXT 파일 을 읽 고 기록 하 는 정리 방법 이 바로 여러분 에 게 공 유 된 모든 내용 입 니 다.여러분 께 참고 가 되 고 많은 응원 부 탁 드 리 겠 습 니 다.

좋은 웹페이지 즐겨찾기