如何以良好的格式显示日期和时间

时间:2013-06-22 10:55:06

标签: c# asp.net sql

如果我想从db检索日期和时间并以格式显示

“2分钟前,刚才,或6个月前”有点等等。

我该怎么办.. :)

任何人都可以建议我如何做到这一点,

2 个答案:

答案 0 :(得分:2)

string gettime(DateTime updatedat)
{
     string toren = "A moment earlier";
     TimeSpan ts = DateTime.Now - updatedat;
     if (ts.TotalSeconds<60)
     {
          toren = ts.TotalSeconds.ToString() + " seconds ago";
     }
     else if (ts.TotalMinutes < 60)
     {
          toren = ts.TotalMinutes.ToString() + " minutes ago";
     }
     else if (ts.TotalHours < 24)
     {
          toren = ts.TotalHours.ToString() + " hours ago";
     }
     else if (ts.TotalDays < 30)
     {
          toren = ts.TotalDays.ToString() + " days ago";
     }
     else 
     {
          double month = ts.TotalDays / 30;
          if (month<13)
          {
               toren = month.ToString() + " months ago";
          }
          else
          {
               double year = month / 12;
               toren = year.ToString() + " years ago";
          }
     }
     return toren;
}

根据您的需要更改/优化它。

答案 1 :(得分:1)

来自here的回答:

const int SECOND = 1;
const int MINUTE = 60 * SECOND;
const int HOUR = 60 * MINUTE;
const int DAY = 24 * HOUR;
const int MONTH = 30 * DAY;

if (delta < 0)
{
  return "not yet";
}
if (delta < 1 * MINUTE)
{
  return ts.Seconds == 1 ? "one second ago" : ts.Seconds + " seconds ago";
}
if (delta < 2 * MINUTE)
{
  return "a minute ago";
}
if (delta < 45 * MINUTE)
{
  return ts.Minutes + " minutes ago";
}
if (delta < 90 * MINUTE)
{
  return "an hour ago";
}
if (delta < 24 * HOUR)
{
  return ts.Hours + " hours ago";
}
if (delta < 48 * HOUR)
{
  return "yesterday";
}
if (delta < 30 * DAY)
{
  return ts.Days + " days ago";
}
if (delta < 12 * MONTH)
{
  int months = Convert.ToInt32(Math.Floor((double)ts.Days / 30));
  return months <= 1 ? "one month ago" : months + " months ago";
}
else
{
  int years = Convert.ToInt32(Math.Floor((double)ts.Days / 365));
  return years <= 1 ? "one year ago" : years + " years ago";
}

是的,我引用了。因为这个答案完全符合PO的要求。 :)

修改 PO的问题:还有一件事......如果我从数据库中检索日期和时间字段该怎么办?我怎么能暗示这段代码?

在不知道您的结构或代码的情况下,它看起来像这样:

var cmd = new SqlCommand(yourConnection);
cmd.CommandText = "SELECT yourDateColumn FROM yourTable";
using (var sr = cmd.ExecuteReader)
{
  if (sr.Read)
  {
    var yourDateTime = sr.GetDateTime(0);
  }
}