| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 583 人关注过本帖
标题:文件分割时,读取文件内容为空
取消只看楼主 加入收藏
lyl930130
Rank: 3Rank: 3
等 级:论坛游侠
帖 子:323
专家分:111
注 册:2013-5-13
结帖率:91.43%
收藏
已结贴  问题点数:20 回复次数:2 
文件分割时,读取文件内容为空
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
    int n_len,i,j;
    char temp[100],outname[4][6]={"1.txt","2.txt","3.txt","4.txt"};
    FILE * in,*out[4];
    if((in=fopen("123.txt","r"))==NULL)
    {
        printf("cant open the file 123.txt\n\n");
        exit(0);
    }
    else
        printf("open the file 123.txt successful!\n\n");

    for(i=0;i<4;i++)
        if((in=fopen(outname[i],"w+"))==NULL)
        {
            printf("cant open the file %s\n\n",outname[i]);
            exit(0);
        }
        else
            printf("open the file %s successful!\n\n",outname[i]);

    n_len=fread(temp,1,100,in);
    printf("%d\n",n_len);
    for(i=0,j=0;i<n_len;i++)
    {
        fwrite(&temp[i],1,1,out[j]);

        if(i%4==3)
            j++;
    }

    fcloseall();
        
    return 0;

}


结果n_len=0,生成的4个txt都是空的。   123.txt内容是1111222233334444
搜索更多相关主题的帖子: successful include file 
2015-05-23 22:50
lyl930130
Rank: 3Rank: 3
等 级:论坛游侠
帖 子:323
专家分:111
注 册:2013-5-13
收藏
得分:0 
回复 6楼 诸葛欧阳
我知道哪错了,后面四个用in的指针应该是out[i]的。
2015-05-24 08:50
lyl930130
Rank: 3Rank: 3
等 级:论坛游侠
帖 子:323
专家分:111
注 册:2013-5-13
收藏
得分:0 
回复 4楼 文心边城
谢谢。问一下代码标签就是指的注释吗
2015-05-24 08:50
快速回复:文件分割时,读取文件内容为空
数据加载中...
 
   



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

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