使用字符串

时间:2017-03-26 10:17:14

标签: c file multidimensional-array file-handling

我正在学习C中的文件处理。我编写的代码用文件替换用户输入的字符串。替换进度本身很有效,但不知何故第一行总是空的,我能够理解出了什么问题。

此外,我还有一些关于文件处理本身以及跟踪代码中错误的其他问题。我现在明白我应该使用perror()和errno。这将是我将要阅读的下一件事。

  • 为什么我不能使用" w +" 建立文件流? (这里的用户告诉我最好不要使用它,不幸的是我无法得到解释)
  • 我尝试使用gdb来查找错误,但是当我显示我的fileStored数组时,我只得到数字,因为它显然是一个int数组,我怎样才能改进变量的显示
  • 在gdb中跟踪我在代码中犯下的错误的好方法是什么?

代码:

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

#define MAXLENGTH 100

int main(int argc, char *argv[]){

    FILE *fileRead;
    char fileName[MAXLENGTH],newLine[MAXLENGTH];
    int fileStored[MAXLENGTH][MAXLENGTH];
    short lineNumber, lines = 0;
    int readChar;

    printf("Input the filename to be opened:");
    int i = 0;
    while((fileName[i] = getchar()) != '\n' && fileName[i] != EOF && i < MAXLENGTH){
        i++;
    }
    fileName[i] = '\0';

    if((fileRead = fopen(fileName, "r")) == NULL){
        printf("Error: File not found!\n");
        return EXIT_FAILURE;
    }
    i = 0;
    while((readChar = fgetc(fileRead)) != EOF){
        if(readChar == '\n'){
            fileStored[lines][i] = readChar;
            i = 0;
            lines++;
        }
        fileStored[lines][i] = readChar;
        i++;
    }

    fclose(fileRead);
    fileRead = fopen(fileName, "w");

    printf("Input the content of the new line:");

    i = 0;
    while((newLine[i] = getchar()) != '\n' && newLine[i] != EOF && i < MAXLENGTH){
        i++;
    }
    newLine[i] = '\0';

    printf("There are %d lines.\nInput the line number you want to replace:",lines);
    scanf("%d",&lineNumber);

    if((lineNumber > lines) || (lineNumber <=0)){
        printf("Error: Line does not exist!");
        return EXIT_FAILURE;
    }

    int j = 0;

    for(i = 0; i < lines; i++){
        if(i == lineNumber-1){
            fprintf(fileRead,"\n%s",newLine);
            continue;
        }
        do{
            fputc(fileStored[i][j],fileRead);
            j++;
        }while(fileStored[i][j] != '\n');
        j = 0;
    }       

    fclose(fileRead);

    return EXIT_SUCCESS;
}

0 个答案:

没有答案