212

我正在尝试将 .NETTimeSpan对象序列化为 XML,但它不起作用。一个快速的谷歌建议虽然TimeSpan是可序列化的,XmlCustomFormatter但不提供将TimeSpan对象转换为 XML 和从 XML 转换的方法。

一种建议的方法是忽略TimeSpanfor 序列化,而是序列化TimeSpan.Ticks(并new TimeSpan(ticks)用于反序列化)的结果。这方面的一个例子如下:

[Serializable]
public class MyClass
{
    // Local Variable
    private TimeSpan m_TimeSinceLastEvent;

    // Public Property - XmlIgnore as it doesn't serialize anyway
    [XmlIgnore]
    public TimeSpan TimeSinceLastEvent
    {
        get { return m_TimeSinceLastEvent; }
        set { m_TimeSinceLastEvent = value; }
    }

    // Pretend property for serialization
    [XmlElement("TimeSinceLastEvent")]
    public long TimeSinceLastEventTicks
    {
        get { return m_TimeSinceLastEvent.Ticks; }
        set { m_TimeSinceLastEvent = new TimeSpan(value); }
    }
}

虽然这在我的简短测试中似乎有效 - 这是实现这一目标的最佳方法吗?

有没有更好的方法将 TimeSpan 序列化到 XML 和从 XML 序列化?

4

12 回答 12

108

这只是对问题中建议的方法的轻微修改,但此 Microsoft Connect 问题建议使用这样的序列化属性:

[XmlIgnore]
public TimeSpan TimeSinceLastEvent
{
    get { return m_TimeSinceLastEvent; }
    set { m_TimeSinceLastEvent = value; }
}

// XmlSerializer does not support TimeSpan, so use this property for 
// serialization instead.
[Browsable(false)]
[XmlElement(DataType="duration", ElementName="TimeSinceLastEvent")]
public string TimeSinceLastEventString
{
    get 
    { 
        return XmlConvert.ToString(TimeSinceLastEvent); 
    }
    set 
    { 
        TimeSinceLastEvent = string.IsNullOrEmpty(value) ?
            TimeSpan.Zero : XmlConvert.ToTimeSpan(value); 
    }
}

这会将 0:02:45 的 TimeSpan 序列化为:

<TimeSinceLastEvent>PT2M45S</TimeSinceLastEvent>

或者,DataContractSerializer支持 TimeSpan。

于 2011-07-18T14:34:46.323 回答
72

您已经发布的方式可能是最干净的。如果你不喜欢额外的属性,你可以实现IXmlSerializable,但是你必须做所有事情,这在很大程度上违背了这一点。我很乐意使用您发布的方法;它是(例如)高效的(没有复杂的解析等),独立于文化的,明确的,并且时间戳类型的数字易于理解。

顺便说一句,我经常补充:

[Browsable(false), EditorBrowsable(EditorBrowsableState.Never)]

这只是将它隐藏在 UI 和引用 dll 中,以避免混淆。

于 2009-03-12T10:08:54.357 回答
29

在某些情况下可行的方法是为您的公共属性提供一个支持字段,即 TimeSpan,但公共属性作为字符串公开。

例如:

protected TimeSpan myTimeout;
public string MyTimeout 
{ 
    get { return myTimeout.ToString(); } 
    set { myTimeout = TimeSpan.Parse(value); }
}

如果属性值主要在包含类或继承类中使用并且从 xml 配置中加载,则这是可以的。

如果您希望公共属性成为其他类的可用 TimeSpan 值,则其他建议的解决方案会更好。

于 2011-09-06T19:01:17.383 回答
27

结合颜色序列化的答案和这个原始解决方案(这本身就很棒)我得到了这个解决方案:

[XmlElement(Type = typeof(XmlTimeSpan))]
public TimeSpan TimeSinceLastEvent { get; set; }

XmlTimeSpan类是这样的:

public class XmlTimeSpan
{
    private const long TICKS_PER_MS = TimeSpan.TicksPerMillisecond;

    private TimeSpan m_value = TimeSpan.Zero;

    public XmlTimeSpan() { }
    public XmlTimeSpan(TimeSpan source) { m_value = source; }

    public static implicit operator TimeSpan?(XmlTimeSpan o)
    {
        return o == null ? default(TimeSpan?) : o.m_value;
    }

    public static implicit operator XmlTimeSpan(TimeSpan? o)
    {
        return o == null ? null : new XmlTimeSpan(o.Value);
    }

    public static implicit operator TimeSpan(XmlTimeSpan o)
    {
        return o == null ? default(TimeSpan) : o.m_value;
    }

    public static implicit operator XmlTimeSpan(TimeSpan o)
    {
        return o == default(TimeSpan) ? null : new XmlTimeSpan(o);
    }

    [XmlText]
    public long Default
    {
        get { return m_value.Ticks / TICKS_PER_MS; }
        set { m_value = new TimeSpan(value * TICKS_PER_MS); }
    }
}
于 2012-12-03T06:38:25.580 回答
10

您可以围绕 TimeSpan 结构创建一个轻量级包装器:

namespace My.XmlSerialization
{
    public struct TimeSpan : IXmlSerializable
    {
        private System.TimeSpan _value;

        public static implicit operator TimeSpan(System.TimeSpan value)
        {
            return new TimeSpan { _value = value };
        }

        public static implicit operator System.TimeSpan(TimeSpan value)
        {
            return value._value;
        }

        public XmlSchema GetSchema()
        {
            return null;
        }

        public void ReadXml(XmlReader reader)
        {
            _value = System.TimeSpan.Parse(reader.ReadContentAsString());
        }

        public void WriteXml(XmlWriter writer)
        {
            writer.WriteValue(_value.ToString());
        }
    }
}

示例序列化结果:

<Entry>
  <StartTime>2010-12-06T08:45:12.5</StartTime>
  <Duration>2.08:29:35.2500000</Duration>
</Entry>
于 2010-12-08T21:05:38.037 回答
8

一个更具可读性的选项是将序列化为字符串并使用该TimeSpan.Parse方法对其进行反序列化。您可以执行与示例相同的操作,但TimeSpan.ToString()在 getter 和TimeSpan.Parse(value)setter 中使用。

于 2009-03-12T10:07:34.657 回答
2

另一种选择是使用SoapFormatter类而不是XmlSerializer类来序列化它。

生成的 XML 文件看起来有点不同......一些“SOAP”前缀标签等......但它可以做到。

以下是SoapFormatter将 20 小时 28 分钟的时间跨度序列化为:

<myTimeSpan>P0Y0M0DT20H28M0S</myTimeSpan>

要使用 SOAPFormatter 类,需要添加引用System.Runtime.Serialization.Formatters.Soap并使用同名的命名空间。

于 2009-07-10T19:53:44.350 回答
2

我的解决方案版本:)

[DataMember, XmlIgnore]
public TimeSpan MyTimeoutValue { get; set; }
[DataMember]
public string MyTimeout
{
    get { return MyTimeoutValue.ToString(); }
    set { MyTimeoutValue = TimeSpan.Parse(value); }
}

编辑:假设它可以为空......

[DataMember, XmlIgnore]
public TimeSpan? MyTimeoutValue { get; set; }
[DataMember]
public string MyTimeout
{
    get 
    {
        if (MyTimeoutValue != null)
            return MyTimeoutValue.ToString();
        return null;
    }
    set 
    {
        TimeSpan outValue;
        if (TimeSpan.TryParse(value, out outValue))
            MyTimeoutValue = outValue;
        else
            MyTimeoutValue = null;
    }
}
于 2014-02-14T10:18:13.543 回答
1

时间跨度以秒数存储在 xml 中,但我希望它很容易采用。Timespan 手动序列化(实现 IXmlSerializable):

public class Settings : IXmlSerializable
{
    [XmlElement("IntervalInSeconds")]
    public TimeSpan Interval;

    public XmlSchema GetSchema()
    {
        return null;
    }

    public void WriteXml(XmlWriter writer)
    {
        writer.WriteElementString("IntervalInSeconds", ((int)Interval.TotalSeconds).ToString());
    }

    public void ReadXml(XmlReader reader)
    {
        string element = null;
        while (reader.Read())
        {
            if (reader.NodeType == XmlNodeType.Element)
                element = reader.Name;
            else if (reader.NodeType == XmlNodeType.Text)
            {
                if (element == "IntervalInSeconds")
                    Interval = TimeSpan.FromSeconds(double.Parse(reader.Value.Replace(',', '.'), CultureInfo.InvariantCulture));
            }
       }
    }
}

还有更全面的例子: https ://bitbucket.org/njkazakov/timespan-serialization

查看 Settings.cs。并且有一些使用 XmlElementAttribute 的棘手代码。

于 2015-05-25T06:27:28.200 回答
1

如果您不想要任何解决方法,请使用 System.Runtime.Serialization.dll 中的 DataContractSerializer 类。

        using (var fs = new FileStream("file.xml", FileMode.Create))
        {
            var serializer = new DataContractSerializer(typeof(List<SomeType>));
            serializer.WriteObject(fs, _items);
        }
于 2017-09-21T18:01:09.580 回答
0

对于数据合同序列化,我使用以下内容。

  • 保持序列化的属性私有可以保持公共接口的干净。
  • 使用公共属性名称进行序列化可以保持 XML 干净。
Public Property Duration As TimeSpan

<DataMember(Name:="Duration")>
Private Property DurationString As String
    Get
        Return Duration.ToString
    End Get
    Set(value As String)
        Duration = TimeSpan.Parse(value)
    End Set
End Property
于 2012-04-03T01:10:43.890 回答
-2

试试这个 :

//Don't Serialize Time Span object.
        [XmlIgnore]
        public TimeSpan m_timeSpan;
//Instead serialize (long)Ticks and instantiate Timespan at time of deserialization.
        public long m_TimeSpanTicks
        {
            get { return m_timeSpan.Ticks; }
            set { m_timeSpan = new TimeSpan(value); }
        }
于 2012-03-09T04:17:45.183 回答