Utility.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Globalization;
  4. using System.Text;
  5. namespace CZFW.Core
  6. {
  7. public static class Utility
  8. {
  9. public static TType Parse<TType>(object value, TType defaultValue = default(TType))
  10. {
  11. if (value == null || value == DBNull.Value || string.IsNullOrWhiteSpace(value.ToString())) return defaultValue;
  12. Type type = typeof(TType);
  13. Type underlyingType = Nullable.GetUnderlyingType(type);
  14. return (TType)Convert.ChangeType(value.ToString(), underlyingType ?? type);
  15. }
  16. public static long GetUnixTimeTick(DateTime? date = null)
  17. {
  18. if (date == null)
  19. {
  20. date = DateTime.Now;
  21. }
  22. var timespan = date.Value.Subtract(new DateTime(1970, 1, 1));
  23. return timespan.Ticks;
  24. }
  25. public static string GenerateTreeMark(string parentMark = null)
  26. {
  27. if (string.IsNullOrEmpty(parentMark))
  28. parentMark = "0";
  29. var ticks = Utility.GetUnixTimeTick();
  30. var mark = $"{parentMark}${ticks.ToString()}$";
  31. return mark;
  32. }
  33. public static string Round(object obj)
  34. {
  35. var dnum = Parse<double>(obj);
  36. var num = Math.Round(dnum);
  37. return num.ToString(System.Globalization.CultureInfo.InvariantCulture);
  38. }
  39. public static string GetNowString(string format = "yyyy/MM/dd hh:mm:ss")
  40. {
  41. var now = DateTime.Now;
  42. var nowStr = now.ToString(format, new CultureInfo("en-US"));
  43. return nowStr;
  44. }
  45. public static string GetCnNowString(string format = "yyyy/MM/dd hh:mm:ss")
  46. {
  47. var now = DateTime.Now;
  48. var nowStr = now.ToString(format, new CultureInfo("zn-CN"));
  49. return nowStr;
  50. }
  51. public static string GetNowStringForSql(string format = "yyyy/MM/dd hh:mm:ss")
  52. {
  53. var res = $"'{GetNowString(format)}'";
  54. return res;
  55. }
  56. /// <summary>
  57. /// 格式化显示时间为几个月,几天前,几小时前,几分钟前,或几秒前
  58. /// </summary>
  59. /// <param name="dt">要格式化显示的时间</param>
  60. /// <returns>几个月,几天前,几小时前,几分钟前,或几秒前</returns>
  61. public static string DateStringFromNow(DateTime dt)
  62. {
  63. TimeSpan span = DateTime.Now - dt;
  64. if (span.TotalDays > 60)
  65. {
  66. return dt.ToShortDateString();
  67. }
  68. if (span.TotalDays > 30)
  69. {
  70. return "1个月前";
  71. }
  72. if (span.TotalDays > 14)
  73. {
  74. return "2周前";
  75. }
  76. if (span.TotalDays > 7)
  77. {
  78. return "1周前";
  79. }
  80. if (span.TotalDays > 1)
  81. {
  82. return $"{(int)Math.Floor(span.TotalDays)}天前";
  83. }
  84. if (span.TotalHours > 1)
  85. {
  86. return $"{(int)Math.Floor(span.TotalHours)}小时前";
  87. }
  88. if (span.TotalMinutes > 1)
  89. {
  90. return $"{(int)Math.Floor(span.TotalMinutes)}分钟前";
  91. }
  92. return span.TotalSeconds >= 1 ? $"{(int)Math.Floor(span.TotalSeconds)}秒前" : "刚刚";
  93. }
  94. public static bool IsEmpty(this object value)
  95. {
  96. return string.IsNullOrEmpty(value?.ToString());
  97. }
  98. public static string UpperCaseUrlEncode(string s)
  99. {
  100. char[] temp = System.Web.HttpUtility.UrlEncode(s).ToCharArray();
  101. for (int i = 0; i < temp.Length - 2; i++)
  102. {
  103. if (temp[i] == '%')
  104. {
  105. temp[i + 1] = char.ToUpper(temp[i + 1]);
  106. temp[i + 2] = char.ToUpper(temp[i + 2]);
  107. }
  108. }
  109. return new string(temp);
  110. }
  111. }
  112. }