如何使用 C 中的系统调用逐行读取

How to read line by line using system call in C

在我的程序中,我目前可以逐个字符读取具有给定名称 "fichier1.txt" 的文件,但我正在寻找的是存储一行(此处为行字符指针)然后显示它方式 :

-ligne 1 : 内容行 1

-第 2 行:内容第 2 行

-等...

我曾尝试逐个存储一个字符,但由于它是一个指针,而且我对指针还很熟悉,所以我无法存储一行,然后重新使用该指针来存储下一行的字符线.

我不得不说它是学校项目的一部分,我必须使用 POSIX 标准。

#include<stdio.h>
#include<stdlib.h>
#include<errno.h>
#include<unistd.h>
#include<sys/types.h>
#include<sys/wait.h>
#include <pthread.h>
#include<string.h>
#include <sys/stat.h>
#include <fcntl.h>

int main(){
    int read_fd, write_fd;
    off_t offset = 0;
    char lu;
    struct stat statFd;
    char *fichier = "fichier1.txt";


    read_fd = open(fichier,O_RDONLY);
    stat(fichier, &statFd);

    if(read_fd == -1){
        perror("open");
        exit(EXIT_FAILURE);
    }

    int i = 0;
    char * line; // variable to store line

    while(lseek(read_fd,offset, SEEK_SET) < statFd.st_size)
    {
        if(read(read_fd, &lu, 1) != -1)
        {
            printf("%c",lu);
            offset++;

        } else {
            perror("READ\n");
            close(read_fd);
            close(write_fd);
            exit(EXIT_FAILURE);
        }
    }

    return 0;
}



我想使用 open() 函数而不是 fopen()

由于您能够从文件中逐个读取字符,因此 while 循环中的逻辑将用于一次存储整行(最多 199 个字符,但您可以增加)一个数组然后显示它:

#include<stdio.h>
#include<string.h>
#include<stdlib.h>



int main(void)
{
    FILE *fptr=fopen( "fichier1.txt","r");
    int  i;
    char arr[200];     //THIS ARRAY WILL HOLD THE CONTENTS OF A LINE TEMPORARILY UNTIL IT IS PRINTED                       
    int temp_index=0,line_number=1;;
    memset(arr,'[=10=]',sizeof(arr));

    while((i=getc(fptr))!=EOF)                         
    {
        if(i!='\n')                                
        {
            arr[temp_index++]=i; 
        }   
        if(i=='\n')
        {
            printf(line %d: %s\n",line_number++,arr);
            temp_index=0;
            memset(arr,'[=10=]',sizeof(arr));
        } 
    }
    return 0;
}

在每次迭代时调用 lseek 可能效率低下,并且在无法搜索的设备上可能会失败。如果我不需要存储行,我会按照下面的这些行编写一个程序。

#include <stdio.h>
#include <stdlib.h>

int main (void)
{
    int lc = 0; /* line count */
    int c;      /* character read */

    FILE *fp = fopen("fichier1.txt", "r");
    if (fp == NULL) {
        perror("fopen");
        return EXIT_FAILURE;
    }

    while ((c = fgetc(fp)) != EOF) {
        printf("line %d: ", ++lc);
        while (c != '\n' && c != EOF) {
            putchar(c);
            c = fgetc(fp);
        }
        putchar('\n');
    }

    return 0;
}

或者,使用 fgets 一次读取一行的程序:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>

int main (void)
{
    int lc = 0; /* line count */
    char buf[4096]; /* buffer to store the line read */
    bool newline = true;

    FILE *fp = fopen("fichier1.txt", "r");
    if (fp == NULL) {
        perror("fopen");
        return EXIT_FAILURE;
    }

    while (fgets(buf, sizeof buf, fp) != NULL) {
        if (newline)
                printf("line %d: ", ++lc);
        printf("%s", buf);
        newline = strchr(buf, '\n');
    }

    return 0;
}