显示标准错误消息

发布于 2024-07-29 02:08:12 字数 796 浏览 8 评论 0原文

我只是测试一个我想测试的小程序。

我想知道是否有一种方法可以使用 stderr 来显示实际错误是什么。

例如,如果文件不存在。 是否有我可以显示的标准错误。

我正在使用 stderr,我想通过使用它,我可以显示实际的错误是什么。

例如。 如果文件不存在。 是否有任何错误被发送到 stderr 并可以显示?

我希望我的问题很清楚。

非常感谢您的任何建议。

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

int main(void)
{
    char buffer[100] = {'\0'}; /* declare and clean buffer */

    FILE *fp;
    int len_of_buff = 0;

    fp = fopen("licenseURL.txt", "r");

    if(fp == NULL)
    {
        fprintf(stderr, "There was a error opening a file ???");

        exit(1);
    }

    fgets(buffer, sizeof(buffer), fp);
    len_of_buff = strlen(buffer);
    buffer[len_of_buff + 1] = '\0'; /* null terminate */
    printf("The url is: [ %s ]\n", buffer);

    fclose(fp);
}

I am just testing a small program that I want to test.

I am wondering if there is a way to use the stderr to display what the actual error was.

For example, if the file doesn't exist. Is there a standard error that I can display.

I am using stderr, and I thought by using that, I could display what the actual error was.

For example. If the file doesn't exit. Does any errors get sent to stderr that can be displayed?

I hope I am clear with my question.

Many thanks for any advice.

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

int main(void)
{
    char buffer[100] = {'\0'}; /* declare and clean buffer */

    FILE *fp;
    int len_of_buff = 0;

    fp = fopen("licenseURL.txt", "r");

    if(fp == NULL)
    {
        fprintf(stderr, "There was a error opening a file ???");

        exit(1);
    }

    fgets(buffer, sizeof(buffer), fp);
    len_of_buff = strlen(buffer);
    buffer[len_of_buff + 1] = '\0'; /* null terminate */
    printf("The url is: [ %s ]\n", buffer);

    fclose(fp);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

对不⑦ 2024-08-05 02:08:12

将您的 fprintf(stderr, ...) 调用替换为:

perror("file open");

(stderr 只是一个用于发送错误消息的流,这样它们就不会与正常的程序输出混淆 - 如果您重定向到文件或相似的)。

Replace your fprintf(stderr, ...) call with:

perror("file open");

(stderr is just a stream for sending error messages to, so that they don't get mixed up with the normal program output - in case you're redirecting to a file or similar).

浅听莫相离 2024-08-05 02:08:12

使用 strerror() 函数检索描述错误的字符串。

Use the strerror() function to retrieve a string describing the error.

谁许谁一生繁华 2024-08-05 02:08:12

我未经测试的版本将如下所示:


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

static void
die(const char *errstr, ...) {
        va_list ap;

        va_start(ap, errstr);
        vfprintf(stderr, errstr, ap);
        va_end(ap);
        exit(EXIT_FAILURE);
}

int
main(int argc, char **argv) {
        static const char licenseURL[] = "licenseURL.txt";
        static char buf[100]; /* declare a clean buffer */
        FILE *fp;
        size_t len = 0;

        if(!(fp = fopen(licenseURL, "r")))
                die("couldn't %s: %s\n", licenseURL, strerror(errno));
        if(!fgets(buf, sizeof buf, fp))
                die("fgets failed: %s\n", strerror(errno));
        len = strlen(buf);
        if(len > 1 && buf[len - 1] == '\n')
                buf[len - 1] = '\0'; /* cut off trailing \n */
        printf("The url is: [ %s ]\n", buf);
        fclose(fp);

        return 0;
}

My untested version would look like this:


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

static void
die(const char *errstr, ...) {
        va_list ap;

        va_start(ap, errstr);
        vfprintf(stderr, errstr, ap);
        va_end(ap);
        exit(EXIT_FAILURE);
}

int
main(int argc, char **argv) {
        static const char licenseURL[] = "licenseURL.txt";
        static char buf[100]; /* declare a clean buffer */
        FILE *fp;
        size_t len = 0;

        if(!(fp = fopen(licenseURL, "r")))
                die("couldn't %s: %s\n", licenseURL, strerror(errno));
        if(!fgets(buf, sizeof buf, fp))
                die("fgets failed: %s\n", strerror(errno));
        len = strlen(buf);
        if(len > 1 && buf[len - 1] == '\n')
                buf[len - 1] = '\0'; /* cut off trailing \n */
        printf("The url is: [ %s ]\n", buf);
        fclose(fp);

        return 0;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文