繁体   English   中英

如何获取在 C 中运行的命令行 Arguments 用于输入和 output 文件

[英]How to get Command Line Arguments running in C for input and output files

我正在尝试在 CMD 开发人员提示符中运行一个应用程序,它应该有一个输入文件和 output 文件,使用命令行 arguments (我不明白,或者无法理解)。 但是当我这样做时,它正在运行并结束,但没有任何内容被打印到 output 文件中。

以下是我的代码,其中不相关的代码已被编辑。 我不知道我在代码或 cmd 行开发人员提示中做错了什么。

该应用程序名为printlines.exe ,我的命令如下所示:

 printlines.exe -i file.java -o output.txt

任何建议将不胜感激。

#include <stdio.h>
#include <string.h>
#include <stdbool.h>
#define LINE 1000
void countLines(int *emptyLines, int *totalLines, int *totalComments, char *fileName, FILE *readFile)
{
    char line[LINE]; // set array to store input file data
    //set variables
    readFile = fopen(fileName, "r");
    int lines = 0;
    int comments = 0;
    int empty = 0;

    while (fgets(line, LINE, readFile) != NULL) //while loop that reads in input file line by line
    {
        /*counts lines in input file works when not using 
            command line arguments redacted to shorten */
    }

    fclose(readFile);

    *emptyLines = empty;
    *totalLines = lines;
    *totalComments = comments;
}
int main(int argc, char *argv[])
{
    FILE *inputFile;
    FILE *outputFile;
    char *outputName;
    char *inputName;

    inputName = argv[1];
    outputName = argv[2];

    inputFile = fopen(inputName, "r");
    outputFile = fopen(outputName, "w");

    int emptyLines, totalLines, totalComments;
    countLines(&emptyLines, &totalLines, &totalComments, inputName, inputFile);
    int character;
    bool aComment = false;

    while ((character = fgetc(inputFile)) != EOF)
    {
        /* code that writes info from input to output, works 
              when not using command line arguments redacted to shorten*/
    }

    //close files
    fclose(inputFile);
    fclose(outputFile);

    printf("There are %d total lines, %d lines of code and %d comments in the file\n", totalLines, emptyLines, totalComments);
    return 0;
}

没有执行错误检查,无论是命令行 arguments 还是打开文件的错误。 我敢打赌,如果您执行以下操作,您会很快查明问题:

//....
if(argc < 5){ // check arguments
    fprintf(stderr, "Too few arguments");
    return EXIT_FAILURE;
}

inputFile = fopen(inputName, "r"); 
if(inputFile == NULL){ // chek if file was open
    fprintf(stderr, "Failed to open input file\n");
    return EXIT_FAILURE;
}
outputFile = fopen(outputName, "w");
if(outputFile == NULL){ // again
    fprintf(stderr, "Failed to open output file\n");
    return EXIT_FAILURE;
}
//...

请注意,您的命令行字符串有 5 个 arguments,文件名位于索引 2 和 4,因此您需要:

inputName = argv[2];
outputName = argv[4];

或者只是删除-i-o因为它们似乎没有做任何事情。

我还应该注意,您可以直接在fopen或 function 上使用命令行 arguments,不需要两个额外的指针:

inputFile = fopen(argv[2], "r");
outputFile = fopen(argv[4], "w");
//...
countLines(&emptyLines, &totalLines, &totalComments, argv[2], inputFile);

暂无
暂无

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

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