StringUtils.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.IO;
  5. using System.Linq;
  6. using System.Text;
  7. using Newtonsoft.Json;
  8. using Newtonsoft.Json.Converters;
  9. namespace GxPress.Common.Tools
  10. {
  11. public static class StringUtils
  12. {
  13. private static string AddressUrl = ConfigHelper.GetValue("ServiceAddress:AddressUrl");
  14. public static bool EqualsIgnoreCase(string a, string b)
  15. {
  16. if (a == b) return true;
  17. if (string.IsNullOrEmpty(a) || string.IsNullOrEmpty(b)) return false;
  18. return a.Equals(b, StringComparison.OrdinalIgnoreCase);
  19. }
  20. public static DateTime SqlMinValue { get; } = new DateTime(1754, 1, 1, 0, 0, 0, 0);
  21. public static DateTime ToDateTime(string dateTimeStr)
  22. {
  23. var datetime = SqlMinValue;
  24. if (!string.IsNullOrEmpty(dateTimeStr))
  25. {
  26. if (!DateTime.TryParse(dateTimeStr.Trim(), out datetime))
  27. {
  28. datetime = SqlMinValue;
  29. }
  30. }
  31. if (datetime < SqlMinValue)
  32. {
  33. datetime = SqlMinValue;
  34. }
  35. return datetime;
  36. }
  37. /// <summary>
  38. /// 移除Emoji
  39. /// </summary>
  40. /// <param name="str"></param>
  41. /// <returns></returns>
  42. public static string RemoveEmoji(string str)
  43. {
  44. if (string.IsNullOrWhiteSpace(str))
  45. return string.Empty;
  46. foreach (var a in str)
  47. {
  48. byte[] bts = Encoding.UTF32.GetBytes(a.ToString());
  49. if (bts[0].ToString() == "253" && bts[1].ToString() == "255")
  50. {
  51. str = str.Replace(a.ToString(), "");
  52. }
  53. }
  54. return str;
  55. }
  56. public static T ToEnum<T>(this string value, T defaultValue) where T : struct
  57. {
  58. if (string.IsNullOrEmpty(value))
  59. {
  60. return defaultValue;
  61. }
  62. return Enum.TryParse<T>(value, true, out var result) ? result : defaultValue;
  63. }
  64. public static int ToInt(string value)
  65. {
  66. return int.TryParse(value, out var result) ? result : 0;
  67. }
  68. public static IEnumerable<string> StringCollectionToStringList(string collection, char split = ',')
  69. {
  70. var list = new List<string>();
  71. if (!string.IsNullOrEmpty(collection))
  72. {
  73. var array = collection.Split(split);
  74. foreach (var s in array)
  75. {
  76. list.Add(s);
  77. }
  78. }
  79. return list;
  80. }
  81. public static IEnumerable<int> StringCollectionToIntList(string collection, char split = ',')
  82. {
  83. var list = new List<int>();
  84. if (!string.IsNullOrEmpty(collection))
  85. {
  86. var array = collection.Split(split);
  87. foreach (var s in array)
  88. {
  89. list.Add(Convert.ToInt32(s));
  90. }
  91. }
  92. return list;
  93. }
  94. public static string ObjectCollectionToString(IEnumerable<string> collection)
  95. {
  96. var builder = new StringBuilder();
  97. if (collection != null)
  98. {
  99. foreach (var obj in collection)
  100. {
  101. builder.Append(obj.Trim()).Append(",");
  102. }
  103. if (builder.Length != 0) builder.Remove(builder.Length - 1, 1);
  104. }
  105. return builder.ToString();
  106. }
  107. public static string GetDescriptionOriginal(this Enum @this)
  108. {
  109. var name = @this.ToString();
  110. var field = @this.GetType().GetField(name);
  111. if (field == null) return name;
  112. var att = System.Attribute.GetCustomAttribute(field, typeof(DescriptionAttribute), false);
  113. return att == null ? field.Name : ((DescriptionAttribute)att).Description;
  114. }
  115. public static string ObjectCollectionToString(IEnumerable<string> collection, int length)
  116. {
  117. var builder = new StringBuilder();
  118. if (collection != null)
  119. {
  120. int i = 0;
  121. foreach (var obj in collection)
  122. {
  123. builder.Append(obj.Trim()).Append(",");
  124. if (i >= length)
  125. break;
  126. i++;
  127. }
  128. if (builder.Length != 0) builder.Remove(builder.Length - 1, 1);
  129. }
  130. return builder.ToString();
  131. }
  132. public static string ObjectCollectionToString(IEnumerable<string> collection, string charValue)
  133. {
  134. if (collection.Count() == 0)
  135. return string.Empty;
  136. var builder = new StringBuilder();
  137. if (collection != null)
  138. {
  139. foreach (var obj in collection)
  140. {
  141. if (!string.IsNullOrWhiteSpace(obj))
  142. builder.Append(obj.Trim()).Append(charValue);
  143. }
  144. if (builder.Length != 0) builder.Remove(builder.Length - 1, 1);
  145. }
  146. return builder.ToString();
  147. }
  148. public static string ObjectCollectionToString(IEnumerable<int> collection)
  149. {
  150. var builder = new StringBuilder();
  151. if (collection != null)
  152. {
  153. foreach (var obj in collection)
  154. {
  155. builder.Append(obj).Append(",");
  156. }
  157. if (builder.Length != 0) builder.Remove(builder.Length - 1, 1);
  158. }
  159. return builder.ToString();
  160. }
  161. public static readonly JsonSerializerSettings JsonSettings = new JsonSerializerSettings
  162. {
  163. //ContractResolver = new CamelCasePropertyNamesContractResolver(),
  164. Converters = new List<JsonConverter>
  165. {
  166. new IsoDateTimeConverter {DateTimeFormat = "yyyy-MM-dd HH:mm:ss"}
  167. }
  168. };
  169. public static string JsonSerialize(object obj)
  170. {
  171. try
  172. {
  173. //var settings = new JsonSerializerSettings
  174. //{
  175. // ContractResolver = new CamelCasePropertyNamesContractResolver()
  176. //};
  177. //var timeFormat = new IsoDateTimeConverter {DateTimeFormat = "yyyy-MM-dd HH:mm:ss"};
  178. //settings.Converters.Add(timeFormat);
  179. return JsonConvert.SerializeObject(obj, JsonSettings);
  180. }
  181. catch
  182. {
  183. return string.Empty;
  184. }
  185. }
  186. public static T JsonDeserialize<T>(string json, T defaultValue = default(T))
  187. {
  188. try
  189. {
  190. //var settings = new JsonSerializerSettings { ContractResolver = new CamelCasePropertyNamesContractResolver() };
  191. //var timeFormat = new IsoDateTimeConverter { DateTimeFormat = "yyyy-MM-dd HH:mm:ss" };
  192. //settings.Converters.Add(timeFormat);
  193. return JsonConvert.DeserializeObject<T>(json, JsonSettings);
  194. }
  195. catch
  196. {
  197. return defaultValue;
  198. }
  199. }
  200. public static string GetWebRootPath(string webRootPath)
  201. {
  202. if (string.IsNullOrWhiteSpace(webRootPath))
  203. {
  204. webRootPath = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot");
  205. }
  206. return webRootPath;
  207. }
  208. public static bool IsGuid(string val)
  209. {
  210. return !string.IsNullOrWhiteSpace(val) && Guid.TryParse(val, out _);
  211. }
  212. public static string ShortGuid(string guid)
  213. {
  214. if (!IsGuid(guid))
  215. {
  216. guid = Guid.NewGuid().ToString();
  217. }
  218. long i = 1;
  219. foreach (var b in Guid.Parse(guid).ToByteArray())
  220. {
  221. i *= b + 1;
  222. }
  223. return $"{i - DateTime.Now.Ticks:x}";
  224. }
  225. public static bool IsDomain(string url)
  226. {
  227. if (string.IsNullOrEmpty(url)) return false;
  228. return Uri.IsWellFormedUriString(url, UriKind.Absolute);
  229. }
  230. public static string RemoveDomain(string url)
  231. {
  232. if (string.IsNullOrEmpty(url)) return string.Empty;
  233. url = url.Replace("service", "");
  234. return IsDomain(url) ? new Uri(url).PathAndQuery : url;
  235. }
  236. public static string AddDomain(string url)
  237. {
  238. if (string.IsNullOrEmpty(url)) return string.Empty;
  239. return IsDomain(url) ? url : $"{AddressUrl}" + url;
  240. }
  241. public static string AddDomainMin(string url, int width = 50)
  242. {
  243. if (string.IsNullOrEmpty(url)) return $"{AddressUrl}/cache/20191123/ff2a342a68fb4c3dbdcdac877b8b3727.png";
  244. var urlSpl = url.Split('.');
  245. var imgType = urlSpl[urlSpl.Length - 1];
  246. var imageName = $"_{width}_{width}.{imgType}";
  247. url = url.Replace($".{imgType}", imageName);
  248. url = IsDomain(url) ? url : $"{AddressUrl}" + url;
  249. return url.Replace("///", "/");
  250. }
  251. public static string GetPreviewDocUrl(string url)
  252. {
  253. return $"http://ow365.cn/?i=20124&furl={AddDomain(url)}";
  254. }
  255. public static int GetDate(DateTime? dateTime)
  256. {
  257. return dateTime.HasValue ? ToInt(dateTime.Value.ToString("yyyyMMdd")) : ToInt(DateTime.Now.ToString("yyyyMMdd"));
  258. }
  259. public static string GetFlowNo(DateTime? createdDate, int flowId)
  260. {
  261. return (createdDate ?? DateTime.Now).ToString("yyyyMMddHHmmss") + flowId.ToString().PadLeft(4, '0');
  262. }
  263. /// <summary>
  264. /// 计算文件大小函数(保留两位小数),Size为字节大小
  265. /// </summary>
  266. /// <param name="Size">初始文件大小</param>
  267. /// <returns></returns>
  268. public static string CountSize(long Size)
  269. {
  270. string m_strSize = "";
  271. long FactSize = 0;
  272. FactSize = Size;
  273. if (FactSize < 1024.00)
  274. m_strSize = FactSize.ToString("F2") + " Byte";
  275. else if (FactSize >= 1024.00 && FactSize < 1048576)
  276. m_strSize = (FactSize / 1024.00).ToString("F2") + " K";
  277. else if (FactSize >= 1048576 && FactSize < 1073741824)
  278. m_strSize = (FactSize / 1024.00 / 1024.00).ToString("F2") + " M";
  279. else if (FactSize >= 1073741824)
  280. m_strSize = (FactSize / 1024.00 / 1024.00 / 1024.00).ToString("F2") + " G";
  281. return m_strSize;
  282. }
  283. public static string Fromffmpeg(string fileName)
  284. {
  285. string duration = "";
  286. using (System.Diagnostics.Process pro = new System.Diagnostics.Process())
  287. {
  288. pro.StartInfo.UseShellExecute = false;
  289. pro.StartInfo.ErrorDialog = false;
  290. pro.StartInfo.RedirectStandardError = true;
  291. pro.StartInfo.FileName = AppDomain.CurrentDomain.BaseDirectory +"ffmpeg.exe";
  292. pro.StartInfo.Arguments = " -i " + fileName;
  293. pro.Start();
  294. System.IO.StreamReader errorreader = pro.StandardError;
  295. pro.WaitForExit(1000);
  296. string result = errorreader.ReadToEnd();
  297. if (!string.IsNullOrEmpty(result))
  298. {
  299. result = result.Substring(result.IndexOf("Duration: ") +("Duration: ").Length, ("00:00:00").Length);
  300. duration = result;
  301. }
  302. return duration;
  303. }
  304. return "";
  305. }
  306. }
  307. }