gpt4 book ai didi

c# - 获取正确的日期时间

转载 作者:太空宇宙 更新时间:2023-11-03 23:21:55 25 4
gpt4 key购买 nike

我有一个文件可以将日志条目创建到文本文件中,但是日期时间不起作用,我尝试设置为 Utcnow 但没有成功

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;

namespace ParticleFramework
{
static class Log
{
private static FileStream file;
public static string dateTime = String.Format("{0:d/M/yyyy HH:mm:ss}", new DateTime());
public static string logFile;

public static Boolean Initialize(string f)
{
logFile = f;
if (logFile != "")
{
try
{
file = new FileStream(logFile, FileMode.Append);

plainWrite("");
plainWrite("");
Info("Particle Server logging started...");

return true;
}
catch
{
return false;
}
}
else
{
return false;
}
}

public static void Info(string text)
{
text = "[" + dateTime + "] " + text;
plainWrite(text);
}

public static void Error(string text)
{
text = "[ERROR]" + text;
plainWrite(text);
}

private static void plainWrite(string text)
{
try
{
StreamWriter sw = new StreamWriter(file);

sw.WriteLine(text);

sw.Close();
file = new FileStream(logFile, FileMode.Append);
}
catch
{

}
}
}
}

[1/1/0001 00:00:00]

无论服务器运行多长时间,日志中添加了多少行,上面的日期时间都不会改变。

最佳答案

您正在创建一个新的 DateTime,它将被初始化为 DateTime.MinValue然后继续重复使用它。

每当您调用Info 时,您都希望使用DateTime.Now 获取当前的DateTimeDateTime.UtcNow :

public static void Info(string text)
{
text = string.Format("[{0:d/M/yyyy HH:mm:ss}] {1}", DateTime.Now, text);
plainWrite(text);
}

关于c# - 获取正确的日期时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35116393/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com