.NET DateTime解析抛出异常

时间:2015-03-09 11:43:09

标签: c# .net datetime datetime-parsing

我一直遇到一些对我来说真的很奇怪的问题,我不能开始理解为什么会发生这种情况。

基本上,我正在尝试使用DateTime.ParseExact,如果处理一个案例而不是另一个案例。

假设我将此字符串作为日期字符串:

"11/02/2015 11:59:06:313"

如果我通过给方法明确声明字符串,即下一个代码来解析,一切正常:

DateTime.ParseExact("11/02/2015 11:59:06:313", "dd/MM/yyyy HH:mm:ss:fff", null);

现在,当把它作为动态值(这就是我想要的)放置时,我得到“字符串未被识别为有效的DateTime格式”,在此代码中:

DateTime.ParseExact(item.original, "dd/MM/yyyy HH:mm:ss:fff", null);

我也尝试过Convert.ToDateTime方法(抛出相同的异常):

Convert.ToDateTime(item.original).ToString("dd/MM/yyyy HH:mm:ss:fff");

'item.original'变量来自一个Class(它是该类的字符串属性,定义为

public class XmlData
{
    public string tableName { get; set; }
    public string columnName { get; set; }
    public string original { get; set; }
    public int required { get; set; }
    public string status { get; set; }
    public string type { get; set; }
    public string newValue { get; set; }
}

我真的迷失在这里。任何人为什么会这样做是否有意义?

修改

决定提供更多关于如何使用这些信息的信息,因为这个问题可能来自更远的地方。

我有一个我只用来定义属性的类,使用反射会创建一个DataTable。

该类具有以下属性:

public DateTime last_date { get; set; }

然后我使用这个方法来构建DataTable:

public DataTable CreateEmptyDataTable(Type myType)
{
    DataTable dt = new DataTable();

    foreach (PropertyInfo info in myType.GetProperties())
    {
        dt.Columns.Add(new DataColumn(info.Name, info.PropertyType));
    }

    return dt;
}

在初始化DataTable之后,我正在读取我的XmlData类中的值,并使用以下代码将last_date列的值分配到这样:

//Set the original state
foreach (XmlData item in collection)
{
    if (item.tableName == "vehicle")
    {
        if (item.original == "--NULL--")
            dr[item.columnName.Substring(item.tableName.Length + 1)] = DBNull.Value;
        else
        {
            if (item.type == "DT") //DateTime in format "dd/MM/yyyy HH:mm:ss:fff"
                dr[item.columnName.Substring(item.tableName.Length + 1)] = DateTime.ParseExact(item.original, "dd/MM/yyyy HH:mm:ss:FFF", null);
            else
                dr[item.columnName.Substring(item.tableName.Length + 1)] = Convert.ChangeType(item.original, dt.Columns[item.columnName.Substring(item.tableName.Length + 1)].DataType);
        }
    }
}

3 个答案:

答案 0 :(得分:4)

您的格式正确无误。

由于您使用null作为IFormatProvider,我强烈怀疑您的CurrentCulture/ 或/和DateSeparator >与:个字符不同的TimeSeparator

/:个字符在自定义日期和时间解析方面很特殊。它们的意思是:用当前的文化日期或时间分隔符替换我

在您的个人资料中,它表示您来自葡萄牙语,您当前的文化可能是pt-PT。这种文化有-作为DateSeparator

答案 1 :(得分:3)

在黑暗中拍摄:

您有一个工作硬编码值

DateTime.ParseExact("11/02/2015 11:59:06:313", "dd/MM/yyyy HH:mm:ss:fff", null);

但是当你将值赋给last_date列时:

if (item.type == "DT") //DateTime in format "dd/MM/yyyy HH:mm:ss:fff"
            dr[item.columnName.Substring(item.tableName.Length + 1)] = DateTime.ParseExact(item.original, "dd/MM/yyyy HH:mm:ss:FFF", null);
        else
            dr[item.columnName.Substring(item.tableName.Length + 1)] = Convert.ChangeType(item.original, dt.Columns[item.columnName.Substring(item.tableName.Length + 1)].DataType);

不应该

DateTime.ParseExact(item.original, "dd/MM/yyyy HH:mm:ss:fff", null);

而不是

DateTime.ParseExact(item.original, "dd/MM/yyyy HH:mm:ss:FFF", null);

答案 2 :(得分:0)

如果有人想知道,这个问题的“解决方案”是通过解构字符串并在DateTime构造函数上分配它来实例化DateTime对象,如下所示:

string[] date = item.original.Split(' ');
string[] datePart = date[0].Split('/');
string[] hourPart = date[1].Split(':');

DateTime newDateValue = DateTime.MinValue;

if (hourPart.Length == 3)
{
    newDateValue = new DateTime(Convert.ToInt32(datePart[2]), Convert.ToInt32(datePart[1]), Convert.ToInt32(datePart[0]), Convert.ToInt32(hourPart[0]), Convert.ToInt32(hourPart[1]), Convert.ToInt32(hourPart[2]));
}
if (hourPart.Length == 4)
{
    newDateValue = new DateTime(Convert.ToInt32(datePart[2]), Convert.ToInt32(datePart[1]), Convert.ToInt32(datePart[0]), Convert.ToInt32(hourPart[0]), Convert.ToInt32(hourPart[1]), Convert.ToInt32(hourPart[2]), Convert.ToInt32(hourPart[3]));
}

我用引号说“解决方案”,因为我认为这是一个糟糕的解决方案,并且可能有更好的解决方法,因为这个操作相对较重,但至少它有效