繁体   English   中英

错误,在尝试ParseExact时间字符串时,字符串未被识别为有效的DateTime

[英]Error, String not recognized as valid DateTime when trying to ParseExact time string

执行突出显示的行后,以下操作失败。

在此输入图像描述

字符串未被识别为有效的DateTime。

它突然发生,在12点左右工作......? 现在是下午4:54而且没有去。 到底他妈发生了什么?

您应该使用hh:mm:ss tt作为格式字符串HH用于24小时制,此时您说它是4AM ...但是PM作为AM / PM指示符。

基本上,使用hhttHH本身。

使用Noda Time ,您将使用:

private static readonly LocalTimePattern TimePattern = 
    LocalTimePattern.CreateWithInvariantCulture("hh:mm:ss tt");
// TODO: Check this is what you want! We can't tell from your example.
private static readonly LocalDatePattern DatePattern =
    LocalDatePattern.CreateWithInvariantCulture("dd/MM/yyyy");
private static readonly LocalDateTimePattern DateTimePattern =
    LocalDatePattern.CreateWithInvariantCulture("yyyy-MM-dd HH:mm:ss");

public static string GetMergedDateTime(string dateText, string timeText)
{
    // The Value property throws an exception if parsing failed. You can
    // check that with the Success property first though.
    LocalDate date = DatePattern.Parse(dateText).Value;
    LocalTime time = TimePattern.Parse(timeText).Value;
    LocalDateTime dateTime = date + time;
    return DateTimePattern.Format(dateTime);
}

请注意,返回LocalDateTime可能更干净 - 在“自然”表示中尽可能多地完成工作,只在必要时使用字符串。

暂无
暂无

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

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