程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++中對文件進行讀寫操作

C++中對文件進行讀寫操作

編輯:C++入門知識

#include "stdafx.h"

#include<fstream>
#include<iostream>
#include<cmath>

using namespace std;

//從鍵盤上讀取字符的函數
void read_save(){
 char c[80];
 ofstream outfile("f1.dat");       //以輸出方工打開文件
 if(!outfile){
  cerr<<"open error!"<<endl;  //注意是用的是cerr
  exit(1);
 }
 cin.getline(c,80);              //從鍵盤讀入一行字符
 for(int i=0;c[i]!=0;i++)        //對字符一個一個的處理,直到遇到/0為止
  if(c[i]>=65&&c[i]<=90||c[i]>=97&&c[i]<=122){      //保證輸入的字符是字符
   outfile.put(c[i]);                            //將字母字符存入磁盤文件
   cout<<c[i]<<"";
  }
  cout<<endl;
  outfile.close();
}
void creat_data(){
 char ch;
 ifstream infile("f1.dat",ios::in);//以輸入的方式打開文件
 if(!infile){
  cerr<<"open error!"<<endl;
  exit(1);
 }
 ofstream outfile("f3.dat");    //定義輸出流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();
}

int main(){
 read_save();
 creat_data();
 system("pause");
 return 0;
}


#include "stdafx.h"

#include<fstream>
#include<iostream>
#include<cmath>

void read_save();
void creat_data();

using namespace std;

int main(){
 read_save();
 creat_data();
 system("pause");
 return 0;
}

//從鍵盤上讀取字符的函數
void read_save(){
 char c[80];
 ofstream outfile("f1.dat");     //以輸出方工打開文件
 if(!outfile){
  cerr<<"open error!"<<endl;  //注意是用的是cerr
  exit(1);
 }
 cin.getline(c,80);              //從鍵盤讀入一行字符
 for(int i=0;c[i]!=0;i++)        //對字符一個一個的處理,直到遇到/0為止
  if(c[i]>=65&&c[i]<=90||c[i]>=97&&c[i]<=122){      //保證輸入的字符是字符
   outfile.put(c[i]);                            //將字母字符存入磁盤文件
   cout<<c[i]<<"";
  }
  cout<<endl;
  outfile.close();
}
void creat_data(){
 char ch;
 ifstream infile("f1.dat",ios::in);//以輸入的方式打開文件
 if(!infile){
  cerr<<"open error!"<<endl;
  exit(1);
 }
 ofstream outfile("f3.dat");    //定義輸出流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();
}


        C:Symbian8.0aS60_2nd_FP2_SCProjectsTestArray項目目錄下會生成f1.dat,f3.dat文件,並且裡面保存有每次程序運行時從console輸入的字符.
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved