23

我在文本文件中插入时间时遇到问题。我使用下面的代码,我得到|21,43,1,3,10,5| Wed Feb 01 20:42:32 2012这是正常的,但我想要做的是将时间放在数字之前,例如Wed Feb 01 20:42:32 2012 |21,43,1,3,10,5|但是,我不能这样做,因为当我在 fprintf 之前使用带有 ctime 函数的 fprintf 时,它识别的数字 \ n 在 ctime 内,因此它会更改第 1 行,然后打印数字。它是这样的:

    Wed Feb 01 20:42:32 2012
    |21,43,1,3,10,5|

这是我不想要的东西......我怎么能在不切换到文本中的下一行的情况下打印时间?提前致谢!

fprintf(file,"   |");
    for (i=0;i<6;i++)
    {
        buffer[i]=(lucky_number=rand()%49+1);       //range 1-49
        for (j=0;j<i;j++)                           
        {
            if (buffer[j]==lucky_number)
                i--;
        }
        itoa (buffer[i],draw_No,10);
        fprintf(file,"%s",draw_No);
        if (i!=5)
            fprintf(file,",");
    }
    fprintf(file,"|     %s",ctime(&t));
4

9 回答 9

31

您可以使用strftime()和的组合localtime()来创建时间戳的自定义格式字符串:

char s[1000];

time_t t = time(NULL);
struct tm * p = localtime(&t);

strftime(s, 1000, "%A, %B %d %Y", p);

printf("%s\n", s);

使用的格式字符串ctime很简单"%c\n"

于 2012-02-01T19:07:24.110 回答
12

您可以使用strtok()替换\n\0。这是一个最小的工作示例:

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

int main() {
    char *ctime_no_newline;
    time_t tm = time(NULL);

    ctime_no_newline = strtok(ctime(&tm), "\n");
    printf("%s - [following text]\n", ctime_no_newline);

    return 0;
}

输出:

Sat Jan  2 11:58:53 2016 - [following text]
于 2016-01-02T18:07:38.543 回答
10

只需使用 %.19s :

struct timeb timebuf;
char *now;

ftime( &timebuf );
now = ctime( &timebuf.time );

/* Note that we're cutting "now" off after 19 characters to avoid the \n
that ctime() appends to the formatted time string.   */
snprintf(tstring, 30, "%.19s", now);  // Mon Jul 05 15:58:42
于 2015-12-29T15:21:39.597 回答
9
  1. 将返回值复制ctime()到临时字符串,'\n'从该临时字符串中删除,然后打印临时字符串。
  2. ctime()通过使用 printf 转换的(字段宽度和)精度,仅打印返回的前 24 个字符。
于 2012-02-01T19:06:15.403 回答
8

在 c++11 中,你可以这样做:

#include <iostream>
#include <chrono>
#include <iomanip>
using namespace std;
using namespace chrono;

// Prints UTC timestamp
void printTime() {
    time_point<system_clock> now = system_clock::now();
    time_t now_time = system_clock::to_time_t(now);

    auto gmt_time = gmtime(&now_time);
    auto timestamp = std::put_time(gmt_time, "%Y-%m-%d %H:%M:%S");
    cout << timestamp << endl;
}

输出:

2017-06-05 00:31:49

于 2017-06-05T00:38:25.747 回答
3

怎么样:

char *p;
int len;

/* ... */

p = ctime(&t);
len = strlen(p);
fprintf(file,"|     %.*s", len - 1, p);

这样它只打印字符串减去最后一个字符(即\n)。

于 2012-02-01T19:11:50.753 回答
1

我在获得 ctime 字符串后这样做了:

#include <string.h>
...
myctime[ strlen(myctime) - 1 ] = '\0';

这只是用字符串终止字符覆盖 ctime 回车,有效地用两个 '\0' 字符而不是一个字符来终止字符串。(ctime 一开始就这样做似乎很奇怪。)

于 2015-05-19T20:03:07.333 回答
0

只需将 'length - 1' 字节复制到另一个字符串。

strncpy( newString, draw_No, strlen(draw_no) - 1 );
于 2012-02-01T19:07:56.867 回答
0

简单地:

    c_time_string = ctime(&current_time);
    len_of_new_line = strlen(c_time_string) - 1;
    c_time_string[len_of_new_line] = '\0';

这实际上会做的是用空终止符替换 ctime 数组的 strlen - 1 个字符(在这种情况下为新行字符) - 它从结尾 '\n' 中删除新行字符并缩短 1 个字符的数组。

如果 strlen 之前是 25,那么之后应该是 24。

于 2015-01-05T11:28:36.543 回答