| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 512 人关注过本帖
标题:一个文件读写问题来求教了
只看楼主 加入收藏
tonlin
Rank: 1
等 级:新手上路
帖 子:41
专家分:0
注 册:2009-10-14
结帖率:69.23%
收藏
 问题点数:0 回复次数:2 
一个文件读写问题来求教了
程序代码:
#include "stdafx.h"
#include "fstream"
#include "iostream"
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{  
    char ch,a[100];
    ifstream file1;
    ofstream file2;
    file1.open("file1.txt",ios::in);   
    if(file1)
    { 
       int i=0;
        while((ch=file1.eof())==0)
       {
        file1.getline(a,100);
        cout<<a<<endl;
        file2.open("file2.txt",ios::out|ios::app);
        file2<<i+1<<":"<<a<<endl;
        file2.close();
        i++;
       }             
    }
    else
     cout<<"文件打开失败"<<endl;
    file1.close();       
    return 0;
}
以上代码目的将file1文件内容逐行读取出来读出一行后打开文件file2将读出内容写入file2中。
程序编译通过但是读出内容没有写到file2中,这是为什么?请高手帮忙回答下,谢谢了


[ 本帖最后由 tonlin 于 2010-5-27 13:27 编辑 ]
搜索更多相关主题的帖子: 文件 
2010-05-27 13:16
ciweitou163
Rank: 7Rank: 7Rank: 7
来 自:河北 石家庄
等 级:黑侠
威 望:1
帖 子:144
专家分:528
注 册:2008-10-4
收藏
得分:0 
程序代码:
#include <fstream>
#include <iostream>
using namespace std;

int main(int argc, char* argv[])
{  
    char ch,a[100];
    ifstream file1;
    ofstream file2;
    file1.open("file1.txt",ios::in);   
    if(file1)
    { 
       int i=0;
        while((ch=file1.eof())==0)
       {
        file1.getline(a,100);
        cout<<a<<endl;
        file2.open("file2.txt",ios::out|ios::app);
        file2<<i+1<<":"<<a<<endl;
        file2.close();
        i++;
       }             
    }
    else
     cout<<"文件打开失败"<<endl;
    file1.close();       
    return 0;
}

我运行的时候没问题啊,在程序的同一级目录下建立file1.txt
然后 运行能读出文件,也能输出到file2.txt中。


  • 满眼生机转化钧;天工人巧日争新。
2010-05-27 19:16
tonlin
Rank: 1
等 级:新手上路
帖 子:41
专家分:0
注 册:2009-10-14
收藏
得分:0 
回复 2楼 ciweitou163
额。那是为什么捏
2010-06-02 19:03
快速回复:一个文件读写问题来求教了
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.033113 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved