繁体   English   中英

从两个文件中读取输入并将它们写入C中的另一个文件

[英]Read input from two files and write them into another file in C

我正在尝试制作一个程序,该程序可以读取两个文件,并将两个文件的内容写入一个单独的文件。 我的程序已经读取了两个文件并显示了它们的统计信息,我只需要获取它以将其写入新的输出文件即可。 我想我快到了,我只需要一点帮助就可以完成它。 这是我的代码:(输出文件流在代码末尾)

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

int main() {

    // declaring variables
    FILE *fp1;
    FILE *fp2;
    FILE *out;
    int charcount = 0, wordcount = 0, linecount = 1, sentence = 0;
    int charcount2 = 0, wordcount2 = 0, linecount2 = 1, sentence2 = 0;
    int character;
    char first[50];
    char second[50];
    char output[50];
    char ch[200];

    // asking the user for the file names and scanning the names they enter as txt files
    printf(" Enter the first file name: ");
    scanf("%s", first);
    strcat(first, ".txt");

    printf(" Enter the second file name: ");
    scanf("%s", second);
    strcat(second, ".txt");

    printf(" Enter the output file name: ");
    scanf("%s", output);
    strcat(output, ".txt");

    // opening the file stream
    fp1 = fopen(first, "r");

    // if the file cannot be reached, display error
    if (fp1 == NULL) {
        printf("File cannot be opened: %s\n", first);
        return 0;
    }

    // reading and printing the file into the program
    printf("\n---FIRST FILE---\n");
    while (!feof(fp1)) {
        fgets(ch, 200, fp1);
        fputs(ch, stdout);
    }

    // counting the characters, words and lines until the program is finished
    fseek(fp1, 0, SEEK_SET); // sends the file pointer back to the start of the file
    while ((character = fgetc(fp1)) != EOF) {
        if (character == EOF)
            break;
        {
            charcount++;
        }
        if (character == ' ' || character == '.')
        {
            wordcount++;
        }
        if (character == '\n')
        {
            linecount++;
        }
        if (character == '.')
        {
            sentence++;
        }
    }

    // closing the stream
    fclose(fp1);

    // printing the number of characters, words and lines
    printf("\n Characters: %d \n Words: %d\n Lines: %d\n Sentences: %d\n\n\n", charcount, wordcount, linecount, sentence);

    //---------SECOND FILE----------//

    // opening the stream
    fp2 = fopen(second, "r");

    // reading and printing the file into the program
    printf("\n---SECOND FILE---\n");
    while (!feof(fp2)) {
        fgets(ch, 200, fp2);
        fputs(ch, stdout);
    }

    // counting the characters, words and lines until the program is finished
    fseek(fp2, 0, SEEK_SET); // sends the file pointer back to the start of the file
    while ((character = getc(fp2)) != EOF) {
        if (character == EOF)
            break;
        {
            charcount2++;
        }
        if (character == ' ' || character == '.')
        {
            wordcount2++;
        }
        if (character == '\n')
        {
            linecount2++;
        }
        if (character == '.')
        {
            sentence2++;
        }
    }

    // closing the stream
    fclose(fp2);

    // printing the number of characters, words and lines
    printf("\n Characters: %d \n Words: %d\n Lines: %d\n Sentences: %d\n\n\n", charcount2, wordcount2, linecount2, sentence2);

    out = fopen(output, "w");

    fgets(ch, 0, fp1);
    fgets(ch, 0, fp2);

    fclose(out);



}

如果可以将其打印到终端,则可以将其打印到文件中! printf("")只是表达fprintf(stdout, "")一种特殊方式。 因此,打开一个指向要打印到的文件的新文件指针,并将其设置为fprintf()调用的目标。 例如,

fp3 = fopen(<output file name>, "w")
fprintf(fp3,<string you want to write>)
fclose(fp3)

编辑:我看到你正在使用fputs打印出来。 这与我上面提到的原理相同。 而不是通过管道将其输出到stdout,而是打开一个文件进行写入并通过管道进行传输。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM