C#根据时区差异计算出时间和日期

时间:2015-11-02 17:56:06

标签: c# datetime timezone timestamp

我遇到了一个小问题,我正在连接到Pokerstars.com数据源以获取有关预定扑克锦标赛信息的更新(https://www.pokerstars.com/datafeed/tournaments/all.xml

然后我解析信息并将其存储在Winforms应用程序的listView中,但是我需要计算出正确的时间,包括本地时区差异。我知道Pokerstars服务器在-05:00运行,但我的问题是将其转换为我的应用程序的特定用户的正确时间。

有人可以计算出代码将其转换为该用户的本地时间,因此会显示正确的开始时间。这是我用来读取XML文件的代码:

    private void LoadAllTournaments()
    {
        DataSet ds = new DataSet();
        ds.ReadXml("http://46.101.5.145/Feeds/all.xml");

        ListViewItem item;

        foreach (DataRow dr in ds.Tables["tournament"].Rows)
        {

            StartDate = dr["start_date"].ToString();

            if (dr["play_money"].ToString() != "true")
            {

                FPPFee = Convert.ToInt32(dr["fpp_fee"]);

                if (FPPFee == 0)
                {

                    if (dr["buy_in_fee"].ToString() != "$0 + $0")
                    {

                        item = new ListViewItem(new string[] { dr["name"].ToString(), StartDate.Substring(0, 10), StartDate.Substring(12, 7), dr["buy_in_fee"].ToString(), dr["prize"].ToString(), dr["players"].ToString(), dr["status"].ToString(), dr["id"].ToString()});
                        listView1.Items.Add(item);

                    }

                }

            }

        }

    }

为了记录我连接到我自己的服务器来读取文件,因为Pokerstars只允许来自英国的人查看XML文件,所以他们每10分钟下载到我的英国VPS。

2 个答案:

答案 0 :(得分:2)

在xml中,提供的值如下:

<start_date>2015-11-02T12:50:00-05:00</start_date>

因此,您不需要预先知道服务器的时区,因为偏移量是在数据中编码的。只需将字符串解析为DateTimeOffset,然后使用TimeZoneInfo转换为用户的时区。

DateTimeOffset startDate = DateTimeOffset.ParseExact(
    (string) dr["start_date"],
    "yyyy-MM-dd'T'HH:mm:sszzz",
    CultureInfo.InvariantCulture);

TimeZoneInfo tz = TimeZoneInfo.FindSystemTimeZoneById("GMT Standard Time");
DateTimeOffset converted = TimeZoneInfo.ConvertTime(startDate, tz);

在上面的例子中,"GMT Standard Time"是伦敦的Windows时区标识符,它在冬天使用GMT(UTC + 00:00),在夏天使用BST(UTC + 01:00)。当然,您需要知道哪个时区实际适用于您的用户。

稍后在您的代码中,您使用Substring来提取部分日期 - 您不应该这样做,而是应该使用格式化字符串。例如,日期为converted.ToString("d"),时间为converted.ToString("t")。请参阅MSDN中的standardcustom格式化字符串。

答案 1 :(得分:0)

首先,您必须将StartDate解析为日期时间。我不知道字符串是什么,你可能需要更准确地解析它,但总的来说:

DateTime origDate = DateTime.Parse(StartDate);

然后只需添加或减去小时数即可获得所需的时区。例如:

DateTime newDate =   origDate.AddHours(-1);

减去一小时。