C语言实现读取文件中指定行号的内容

static int readFileLineNumVal(char *pFilePath, unsigned int u8lineNum, char * preadDataBuf, unsigned int readLen)
{   
    char c;  
    FILE *fp = NULL;
    unsigned int lineNum = 0;
    unsigned char i = 0, j = 0;
    //char readNumVal[32] = {0};
    
    fp = fopen(pFilePath, "r+");
    if(NULL == fp)
    {
        LOG("file %s open error\r\n", pFilePath);
        return -1;
    }
    while((c = getc(fp)) != EOF)
    {
        if('\n' == c)
        {
            lineNum++; 
            if(lineNum > u8lineNum)
            {   
                goto stopReadfile;
            }
            continue;
        }
        if(lineNum == u8lineNum)
        {
            if(i > readLen)
            {   
                LOG("read file final\r\n");
                goto stopReadfile;
            }
            preadDataBuf[i++] = c;
            //printf("%02c", c);
        }
    }
    stopReadfile:
    fclose(fp);
    fp = NULL;
    //LOG("\nnow is ready. lineNum = %d, i= %d\n", lineNum, i);
    
    return 0;
}

值得注意的是:上面的代码有一个效率的问题。就是如果本身文件不大的话,查找的实际的时间就和行数和每一行的字节数有关了。所以如果对查找的时间有需求的话,建议使用c++中的一些机制,可以提高查找的效率。可以参考:https://blog.csdn.net/u010299133/article/details/84591058

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值