TranslateUtils.cs 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.Collections.Specialized;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.IO;
  8. using System.Runtime.Serialization.Formatters.Binary;
  9. using System.Text;
  10. using Newtonsoft.Json;
  11. using Newtonsoft.Json.Converters;
  12. using Newtonsoft.Json.Linq;
  13. using Newtonsoft.Json.Serialization;
  14. namespace Tede.Data.Tests.Utils
  15. {
  16. public static class TranslateUtils
  17. {
  18. public static T Get<T>(IDictionary<string, object> dict, string name, T defaultValue = default(T))
  19. {
  20. return Cast(Get(dict, name), defaultValue);
  21. }
  22. public static object Get(IDictionary<string, object> dict, string name)
  23. {
  24. if (string.IsNullOrEmpty(name)) return null;
  25. return dict.TryGetValue(name, out var extendValue) ? extendValue : null;
  26. }
  27. public static T Cast<T>(object value, T defaultValue = default(T))
  28. {
  29. switch (value)
  30. {
  31. case null:
  32. return defaultValue;
  33. case T variable:
  34. return variable;
  35. default:
  36. try
  37. {
  38. return (T)Convert.ChangeType(value, typeof(T));
  39. }
  40. catch (InvalidCastException)
  41. {
  42. return defaultValue;
  43. }
  44. }
  45. }
  46. //添加枚举:(fileAttributes | FileAttributes.ReadOnly) 判断枚举:((fileAttributes & FileAttributes.ReadOnly) == FileAttributes.ReadOnly) 去除枚举:(fileAttributes ^ FileAttributes.ReadOnly)
  47. /// <summary>
  48. /// 将字符串类型转换为对应的枚举类型
  49. /// </summary>
  50. public static object ToEnum(Type enumType, string value, object defaultType)
  51. {
  52. object retval;
  53. try
  54. {
  55. retval = Enum.Parse(enumType, value, true);
  56. }
  57. catch
  58. {
  59. retval = defaultType;
  60. }
  61. return retval;
  62. }
  63. public static List<int> ToIntList(int intValue)
  64. {
  65. return new List<int> { intValue };
  66. }
  67. public static int ToInt(string intStr, int defaultValue = 0)
  68. {
  69. if (!int.TryParse(intStr?.Trim().TrimStart('0'), out var i))
  70. {
  71. i = defaultValue;
  72. }
  73. if (i < 0)
  74. {
  75. i = defaultValue;
  76. }
  77. return i;
  78. }
  79. public static int ToIntWithNegative(string intStr, int defaultValue = 0)
  80. {
  81. if (!int.TryParse(intStr?.Trim(), out var i))
  82. {
  83. i = defaultValue;
  84. }
  85. return i;
  86. }
  87. public static decimal ToDecimal(string intStr, decimal defaultValue = 0)
  88. {
  89. if (!decimal.TryParse(intStr?.Trim(), out var i))
  90. {
  91. i = defaultValue;
  92. }
  93. if (i < 0)
  94. {
  95. i = defaultValue;
  96. }
  97. return i;
  98. }
  99. public static decimal ToDecimalWithNegative(string intStr, decimal defaultValue = 0)
  100. {
  101. if (!decimal.TryParse(intStr?.Trim(), out var i))
  102. {
  103. i = defaultValue;
  104. }
  105. return i;
  106. }
  107. public static long ToLong(string intStr, long defaultValue = 0)
  108. {
  109. if (!long.TryParse(intStr?.Trim(), out var l))
  110. {
  111. l = defaultValue;
  112. }
  113. if (l < 0)
  114. {
  115. l = defaultValue;
  116. }
  117. return l;
  118. }
  119. public static bool ToBool(string boolStr)
  120. {
  121. if (!bool.TryParse(boolStr?.Trim(), out var boolean))
  122. {
  123. boolean = false;
  124. }
  125. return boolean;
  126. }
  127. public static bool ToBool(string boolStr, bool defaultValue)
  128. {
  129. if (!bool.TryParse(boolStr?.Trim(), out var boolean))
  130. {
  131. boolean = defaultValue;
  132. }
  133. return boolean;
  134. }
  135. public static DateTimeOffset ToDateTimeOffset(DateTime dateTime)
  136. {
  137. return new DateTimeOffset(dateTime, TimeZoneInfo.Local.GetUtcOffset(dateTime));
  138. }
  139. public static DateTime ToDateTime(DateTimeOffset? dateTimeOffset)
  140. {
  141. if (!dateTimeOffset.HasValue)
  142. {
  143. return DateTime.MinValue;
  144. }
  145. return dateTimeOffset.Value.UtcDateTime;
  146. }
  147. public static DateTime ToDateTime(string dateTimeStr, DateTime defaultValue)
  148. {
  149. var datetime = defaultValue;
  150. if (!string.IsNullOrEmpty(dateTimeStr))
  151. {
  152. if (!DateTime.TryParse(dateTimeStr.Trim(), out datetime))
  153. {
  154. datetime = defaultValue;
  155. }
  156. return datetime;
  157. }
  158. return datetime;
  159. }
  160. public static Color ToColor(string colorStr)
  161. {
  162. var color = Color.Empty;
  163. try
  164. {
  165. color = Color.FromName(colorStr.Trim());
  166. }
  167. catch
  168. {
  169. // ignored
  170. }
  171. return color;
  172. }
  173. public static string ToTwoCharString(int i)
  174. {
  175. return i >= 0 && i <= 9 ? $"0{i}" : i.ToString();
  176. }
  177. public static List<int> StringCollectionToIntList(string collection)
  178. {
  179. var list = new List<int>();
  180. if (!string.IsNullOrEmpty(collection))
  181. {
  182. var array = collection.Split(',');
  183. foreach (var s in array)
  184. {
  185. int.TryParse(s.Trim(), out var i);
  186. list.Add(i);
  187. }
  188. }
  189. return list;
  190. }
  191. public static List<string> StringCollectionToStringList(string collection, char split = ',')
  192. {
  193. var list = new List<string>();
  194. if (!string.IsNullOrEmpty(collection))
  195. {
  196. var array = collection.Split(split);
  197. foreach (var s in array)
  198. {
  199. list.Add(s);
  200. }
  201. }
  202. return list;
  203. }
  204. public static IDictionary<string, object> ToDictionary<T>(T o)
  205. {
  206. IDictionary<string, object> res = new Dictionary<string, object>();
  207. var props = typeof(T).GetProperties();
  208. foreach (var prop in props)
  209. {
  210. if (prop.CanRead)
  211. {
  212. res.Add(prop.Name, prop.GetValue(o, null));
  213. }
  214. }
  215. return res;
  216. }
  217. public static Dictionary<string, object> ToDictionary(string json)
  218. {
  219. var dict = new Dictionary<string, object>();
  220. if (string.IsNullOrEmpty(json)) return dict;
  221. json = json.Trim();
  222. if (json.StartsWith("{") && json.EndsWith("}"))
  223. {
  224. dict = JsonDeserialize<Dictionary<string, object>>(json);
  225. return dict;
  226. }
  227. json = json.Replace("/u0026", "&");
  228. var pairs = json.Split('&');
  229. foreach (var pair in pairs)
  230. {
  231. if (pair.IndexOf("=", StringComparison.Ordinal) == -1) continue;
  232. var name = pair.Split('=')[0];
  233. if (string.IsNullOrEmpty(name)) continue;
  234. name = name.Replace("_equals_", "=").Replace("_and_", "&").Replace("_question_", "?").Replace("_quote_", "'").Replace("_add_", "+").Replace("_return_", "\r").Replace("_newline_", "\n");
  235. var value = pair.Split('=')[1];
  236. if (!string.IsNullOrEmpty(value))
  237. {
  238. value = value.Replace("_equals_", "=").Replace("_and_", "&").Replace("_question_", "?").Replace("_quote_", "'").Replace("_add_", "+").Replace("_return_", "\r").Replace("_newline_", "\n");
  239. }
  240. dict[name] = value;
  241. }
  242. return dict;
  243. }
  244. public static IDictionary<string, object> ToDictionary(NameValueCollection collection)
  245. {
  246. var dict = new Dictionary<string, object>(StringComparer.OrdinalIgnoreCase);
  247. if (collection == null) return dict;
  248. foreach (var key in collection.AllKeys)
  249. {
  250. dict[key] = collection[key];
  251. }
  252. return dict;
  253. }
  254. public static StringCollection StringCollectionToStringCollection(string collection, char separator = ',')
  255. {
  256. var arraylist = new StringCollection();
  257. if (!string.IsNullOrEmpty(collection))
  258. {
  259. var array = collection.Split(separator);
  260. foreach (var s in array)
  261. {
  262. arraylist.Add(s.Trim());
  263. }
  264. }
  265. return arraylist;
  266. }
  267. public static string ObjectCollectionToString(ICollection collection)
  268. {
  269. var builder = new StringBuilder();
  270. if (collection != null)
  271. {
  272. foreach (var obj in collection)
  273. {
  274. builder.Append(obj.ToString().Trim()).Append(",");
  275. }
  276. if (builder.Length != 0) builder.Remove(builder.Length - 1, 1);
  277. }
  278. return builder.ToString();
  279. }
  280. public static string ObjectCollectionToString(ICollection collection, string separatorStr)
  281. {
  282. var builder = new StringBuilder();
  283. if (collection != null)
  284. {
  285. foreach (var obj in collection)
  286. {
  287. builder.Append(obj.ToString().Trim()).Append(separatorStr);
  288. }
  289. if (builder.Length != 0) builder.Remove(builder.Length - separatorStr.Length, separatorStr.Length);
  290. }
  291. return builder.ToString();
  292. }
  293. /// <summary>
  294. /// 将对象集合转化为可供Sql语句查询的In()条件,如将集合{'ss','xx','ww'}转化为字符串"'ss','xx','ww'"。
  295. /// </summary>
  296. /// <param name="collection">非数字的集合</param>
  297. /// <returns>可供Sql语句查询的In()条件字符串,各元素用单引号包围</returns>
  298. public static string ToSqlInStringWithQuote(ICollection collection)
  299. {
  300. var builder = new StringBuilder();
  301. if (collection != null)
  302. {
  303. foreach (var obj in collection)
  304. {
  305. builder.Append("'").Append(obj).Append("'").Append(",");
  306. }
  307. if (builder.Length != 0) builder.Remove(builder.Length - 1, 1);
  308. }
  309. return builder.Length == 0 ? "null" : builder.ToString();
  310. }
  311. /// <summary>
  312. /// 将数字集合转化为可供Sql语句查询的In()条件,如将集合{2,3,4}转化为字符串"2,3,4"。
  313. /// </summary>
  314. /// <param name="collection">非数字的集合</param>
  315. /// <returns>可供Sql语句查询的In()条件字符串,各元素不使用单引号包围</returns>
  316. public static string ToSqlInStringWithoutQuote(ICollection collection)
  317. {
  318. var builder = new StringBuilder();
  319. if (collection != null)
  320. {
  321. foreach (var obj in collection)
  322. {
  323. builder.Append(obj).Append(",");
  324. }
  325. if (builder.Length != 0) builder.Remove(builder.Length - 1, 1);
  326. }
  327. return builder.Length == 0 ? "null" : builder.ToString();
  328. }
  329. public static NameValueCollection DictionaryToNameValueCollection(IDictionary<string, object> attributes)
  330. {
  331. var nvc = new NameValueCollection(StringComparer.OrdinalIgnoreCase);
  332. if (attributes != null && attributes.Count > 0)
  333. {
  334. foreach (var key in attributes.Keys)
  335. {
  336. var value = attributes[key];
  337. if (value != null)
  338. {
  339. nvc[key] = attributes[key].ToString();
  340. }
  341. }
  342. }
  343. return nvc;
  344. }
  345. public static bool DictGetValue(IDictionary<int, bool> dict, int key)
  346. {
  347. if (dict.TryGetValue(key, out var retval))
  348. {
  349. return retval;
  350. }
  351. return false;
  352. }
  353. public static string ToAttributesString(NameValueCollection attributes)
  354. {
  355. var builder = new StringBuilder();
  356. if (attributes != null && attributes.Count > 0)
  357. {
  358. foreach (string key in attributes.Keys)
  359. {
  360. var value = attributes[key];
  361. if (!string.IsNullOrEmpty(value))
  362. {
  363. value = value.Replace("\"", "'");
  364. }
  365. builder.Append($@"{key}=""{value}"" ");
  366. }
  367. builder.Length--;
  368. }
  369. return builder.ToString();
  370. }
  371. public static string ToAttributesString(Dictionary<string, string> attributes)
  372. {
  373. var builder = new StringBuilder();
  374. if (attributes != null && attributes.Count > 0)
  375. {
  376. foreach (var key in attributes.Keys)
  377. {
  378. var value = attributes[key];
  379. builder.Append(value == null ? $"{key} " : $@"{key}=""{value.Replace("\"", "'")}"" ");
  380. }
  381. builder.Length--;
  382. }
  383. return builder.ToString();
  384. }
  385. public static string NameValueCollectionToJsonString(NameValueCollection attributes)
  386. {
  387. var jsonString = new StringBuilder("{");
  388. if (attributes != null && attributes.Count > 0)
  389. {
  390. foreach (string key in attributes.Keys)
  391. {
  392. var value = attributes[key];
  393. value = value?.Replace("\\", "\\\\").Replace("\"", "\\\\\\\"").Replace("\r\n", string.Empty);
  394. jsonString.AppendFormat(@"""{0}"": ""{1}"",", key, value);
  395. }
  396. jsonString.Length--;
  397. }
  398. jsonString.Append("}");
  399. return jsonString.ToString();
  400. }
  401. public static long GetKbSize(long byteSize)
  402. {
  403. long fileKbSize = Convert.ToUInt32(Math.Ceiling((double)byteSize / 1024));
  404. if (fileKbSize == 0)
  405. {
  406. fileKbSize = 1;
  407. }
  408. return fileKbSize;
  409. }
  410. #region 汉字转拼音
  411. private static readonly int[] PyValue =
  412. {
  413. -20319, -20317, -20304, -20295, -20292, -20283, -20265, -20257, -20242, -20230, -20051, -20036, -20032,
  414. -20026, -20002, -19990, -19986, -19982, -19976, -19805, -19784, -19775, -19774, -19763, -19756, -19751,
  415. -19746, -19741, -19739, -19728,
  416. -19725, -19715, -19540, -19531, -19525, -19515, -19500, -19484, -19479, -19467, -19289, -19288, -19281,
  417. -19275, -19270, -19263,
  418. -19261, -19249, -19243, -19242, -19238, -19235, -19227, -19224, -19218, -19212, -19038, -19023, -19018,
  419. -19006, -19003, -18996,
  420. -18977, -18961, -18952, -18783, -18774, -18773, -18763, -18756, -18741, -18735, -18731, -18722, -18710,
  421. -18697, -18696, -18526,
  422. -18518, -18501, -18490, -18478, -18463, -18448, -18447, -18446, -18239, -18237, -18231, -18220, -18211,
  423. -18201, -18184, -18183,
  424. -18181, -18012, -17997, -17988, -17970, -17964, -17961, -17950, -17947, -17931, -17928, -17922, -17759,
  425. -17752, -17733, -17730,
  426. -17721, -17703, -17701, -17697, -17692, -17683, -17676, -17496, -17487, -17482, -17468, -17454, -17433,
  427. -17427, -17417, -17202,
  428. -17185, -16983, -16970, -16942, -16915, -16733, -16708, -16706, -16689, -16664, -16657, -16647, -16474,
  429. -16470, -16465, -16459,
  430. -16452, -16448, -16433, -16429, -16427, -16423, -16419, -16412, -16407, -16403, -16401, -16393, -16220,
  431. -16216, -16212, -16205,
  432. -16202, -16187, -16180, -16171, -16169, -16158, -16155, -15959, -15958, -15944, -15933, -15920, -15915,
  433. -15903, -15889, -15878,
  434. -15707, -15701, -15681, -15667, -15661, -15659, -15652, -15640, -15631, -15625, -15454, -15448, -15436,
  435. -15435, -15419, -15416,
  436. -15408, -15394, -15385, -15377, -15375, -15369, -15363, -15362, -15183, -15180, -15165, -15158, -15153,
  437. -15150, -15149, -15144,
  438. -15143, -15141, -15140, -15139, -15128, -15121, -15119, -15117, -15110, -15109, -14941, -14937, -14933,
  439. -14930, -14929, -14928,
  440. -14926, -14922, -14921, -14914, -14908, -14902, -14894, -14889, -14882, -14873, -14871, -14857, -14678,
  441. -14674, -14670, -14668,
  442. -14663, -14654, -14645, -14630, -14594, -14429, -14407, -14399, -14384, -14379, -14368, -14355, -14353,
  443. -14345, -14170, -14159,
  444. -14151, -14149, -14145, -14140, -14137, -14135, -14125, -14123, -14122, -14112, -14109, -14099, -14097,
  445. -14094, -14092, -14090,
  446. -14087, -14083, -13917, -13914, -13910, -13907, -13906, -13905, -13896, -13894, -13878, -13870, -13859,
  447. -13847, -13831, -13658,
  448. -13611, -13601, -13406, -13404, -13400, -13398, -13395, -13391, -13387, -13383, -13367, -13359, -13356,
  449. -13343, -13340, -13329,
  450. -13326, -13318, -13147, -13138, -13120, -13107, -13096, -13095, -13091, -13076, -13068, -13063, -13060,
  451. -12888, -12875, -12871,
  452. -12860, -12858, -12852, -12849, -12838, -12831, -12829, -12812, -12802, -12607, -12597, -12594, -12585,
  453. -12556, -12359, -12346,
  454. -12320, -12300, -12120, -12099, -12089, -12074, -12067, -12058, -12039, -11867, -11861, -11847, -11831,
  455. -11798, -11781, -11604,
  456. -11589, -11536, -11358, -11340, -11339, -11324, -11303, -11097, -11077, -11067, -11055, -11052, -11045,
  457. -11041, -11038, -11024,
  458. -11020, -11019, -11018, -11014, -10838, -10832, -10815, -10800, -10790, -10780, -10764, -10587, -10544,
  459. -10533, -10519, -10331,
  460. -10329, -10328, -10322, -10315, -10309, -10307, -10296, -10281, -10274, -10270, -10262, -10260, -10256,
  461. -10254
  462. };
  463. private static readonly string[] PyStr =
  464. {
  465. "a", "ai", "an", "ang", "ao", "ba", "bai", "ban", "bang", "bao", "bei", "ben", "beng", "bi", "bian", "biao",
  466. "bie", "bin", "bing", "bo", "bu", "ca", "cai", "can", "cang", "cao", "ce", "ceng", "cha", "chai", "chan",
  467. "chang", "chao", "che", "chen",
  468. "cheng", "chi", "chong", "chou", "chu", "chuai", "chuan", "chuang", "chui", "chun", "chuo", "ci", "cong",
  469. "cou", "cu", "cuan", "cui",
  470. "cun", "cuo", "da", "dai", "dan", "dang", "dao", "de", "deng", "di", "dian", "diao", "die", "ding", "diu",
  471. "dong", "dou", "du", "duan",
  472. "dui", "dun", "duo", "e", "en", "er", "fa", "fan", "fang", "fei", "fen", "feng", "fo", "fou", "fu", "ga",
  473. "gai", "gan", "gang", "gao",
  474. "ge", "gei", "gen", "geng", "gong", "gou", "gu", "gua", "guai", "guan", "guang", "gui", "gun", "guo", "ha",
  475. "hai", "han", "hang",
  476. "hao", "he", "hei", "hen", "heng", "hong", "hou", "hu", "hua", "huai", "huan", "huang", "hui", "hun", "huo",
  477. "ji", "jia", "jian",
  478. "jiang", "jiao", "jie", "jin", "jing", "jiong", "jiu", "ju", "juan", "jue", "jun", "ka", "kai", "kan",
  479. "kang", "kao", "ke", "ken",
  480. "keng", "kong", "kou", "ku", "kua", "kuai", "kuan", "kuang", "kui", "kun", "kuo", "la", "lai", "lan", "lang",
  481. "lao", "le", "lei",
  482. "leng", "li", "lia", "lian", "liang", "liao", "lie", "lin", "ling", "liu", "long", "lou", "lu", "lv", "luan",
  483. "lue", "lun", "luo",
  484. "ma", "mai", "man", "mang", "mao", "me", "mei", "men", "meng", "mi", "mian", "miao", "mie", "min", "ming",
  485. "miu", "mo", "mou", "mu",
  486. "na", "nai", "nan", "nang", "nao", "ne", "nei", "nen", "neng", "ni", "nian", "niang", "niao", "nie", "nin",
  487. "ning", "niu", "nong",
  488. "nu", "nv", "nuan", "nue", "nuo", "o", "ou", "pa", "pai", "pan", "pang", "pao", "pei", "pen", "peng", "pi",
  489. "pian", "piao", "pie",
  490. "pin", "ping", "po", "pu", "qi", "qia", "qian", "qiang", "qiao", "qie", "qin", "qing", "qiong", "qiu", "qu",
  491. "quan", "que", "qun",
  492. "ran", "rang", "rao", "re", "ren", "reng", "ri", "rong", "rou", "ru", "ruan", "rui", "run", "ruo", "sa",
  493. "sai", "san", "sang",
  494. "sao", "se", "sen", "seng", "sha", "shai", "shan", "shang", "shao", "she", "shen", "sheng", "shi", "shou",
  495. "shu", "shua",
  496. "shuai", "shuan", "shuang", "shui", "shun", "shuo", "si", "song", "sou", "su", "suan", "sui", "sun", "suo",
  497. "ta", "tai",
  498. "tan", "tang", "tao", "te", "teng", "ti", "tian", "tiao", "tie", "ting", "tong", "tou", "tu", "tuan", "tui",
  499. "tun", "tuo",
  500. "wa", "wai", "wan", "wang", "wei", "wen", "weng", "wo", "wu", "xi", "xia", "xian", "xiang", "xiao", "xie",
  501. "xin", "xing",
  502. "xiong", "xiu", "xu", "xuan", "xue", "xun", "ya", "yan", "yang", "yao", "ye", "yi", "yin", "ying", "yo",
  503. "yong", "you",
  504. "yu", "yuan", "yue", "yun", "za", "zai", "zan", "zang", "zao", "ze", "zei", "zen", "zeng", "zha", "zhai",
  505. "zhan", "zhang",
  506. "zhao", "zhe", "zhen", "zheng", "zhi", "zhong", "zhou", "zhu", "zhua", "zhuai", "zhuan", "zhuang", "zhui",
  507. "zhun", "zhuo",
  508. "zi", "zong", "zou", "zu", "zuan", "zui", "zun", "zuo"
  509. };
  510. public static string ToPinYin(string chrstr)
  511. {
  512. var returnstr = string.Empty;
  513. var nowchar = chrstr.ToCharArray();
  514. foreach (var t in nowchar)
  515. {
  516. var array = Encoding.Default.GetBytes(t.ToString());
  517. int i1 = array[0];
  518. int i2 = array[1];
  519. var chrasc = i1 * 256 + i2 - 65536;
  520. if (chrasc > 0 && chrasc < 160)
  521. {
  522. returnstr += t;
  523. }
  524. else
  525. {
  526. for (var i = (PyValue.Length - 1); i >= 0; i--)
  527. {
  528. if (PyValue[i] <= chrasc)
  529. {
  530. returnstr += PyStr[i];
  531. break;
  532. }
  533. }
  534. }
  535. }
  536. return returnstr;
  537. }
  538. #endregion
  539. public static readonly JsonSerializerSettings JsonSettings = new JsonSerializerSettings
  540. {
  541. ContractResolver = new CamelCasePropertyNamesContractResolver(),
  542. Converters = new List<JsonConverter>
  543. {
  544. new IsoDateTimeConverter {DateTimeFormat = "yyyy-MM-dd HH:mm:ss"}
  545. }
  546. };
  547. public static string JsonSerialize(object obj)
  548. {
  549. try
  550. {
  551. //var settings = new JsonSerializerSettings
  552. //{
  553. // ContractResolver = new CamelCasePropertyNamesContractResolver()
  554. //};
  555. //var timeFormat = new IsoDateTimeConverter {DateTimeFormat = "yyyy-MM-dd HH:mm:ss"};
  556. //settings.Converters.Add(timeFormat);
  557. return JsonConvert.SerializeObject(obj, JsonSettings);
  558. }
  559. catch
  560. {
  561. return string.Empty;
  562. }
  563. }
  564. public static T JsonDeserialize<T>(string json, T defaultValue = default(T))
  565. {
  566. try
  567. {
  568. //var settings = new JsonSerializerSettings { ContractResolver = new CamelCasePropertyNamesContractResolver() };
  569. //var timeFormat = new IsoDateTimeConverter { DateTimeFormat = "yyyy-MM-dd HH:mm:ss" };
  570. //settings.Converters.Add(timeFormat);
  571. return JsonConvert.DeserializeObject<T>(json, JsonSettings);
  572. }
  573. catch
  574. {
  575. return defaultValue;
  576. }
  577. }
  578. public static Dictionary<string, object> JsonGetDictionaryIgnorecase(JObject json)
  579. {
  580. return new Dictionary<string, object>(json.ToObject<IDictionary<string, object>>(), StringComparer.CurrentCultureIgnoreCase);
  581. }
  582. public static Dictionary<string, object> JsonGetDictionaryIgnorecase(Dictionary<string, object> dict)
  583. {
  584. return new Dictionary<string, object>(dict, StringComparer.CurrentCultureIgnoreCase);
  585. }
  586. public static List<Dictionary<string, object>> DataTableToDictionaryList(DataTable dataTable)
  587. {
  588. var rows = new List<Dictionary<string, object>>();
  589. foreach (DataRow dataRow in dataTable.Rows)
  590. {
  591. var row = new Dictionary<string, object>();
  592. foreach (DataColumn col in dataTable.Columns)
  593. {
  594. row.Add(col.ColumnName, dataRow[col]);
  595. }
  596. rows.Add(row);
  597. }
  598. return rows;
  599. }
  600. public static NameValueCollection NewIgnoreCaseNameValueCollection()
  601. {
  602. var comparer = StringComparer.OrdinalIgnoreCase;
  603. var caseInsensitiveDictionary = new NameValueCollection(comparer);
  604. return caseInsensitiveDictionary;
  605. }
  606. public static void AddAttributesIfNotExists(NameValueCollection target, NameValueCollection attributes)
  607. {
  608. if (target == null || attributes == null) return;
  609. foreach (var attributeName in attributes.AllKeys)
  610. {
  611. if (string.IsNullOrEmpty(target[attributeName]))
  612. {
  613. target[attributeName] = attributes[attributeName];
  614. }
  615. }
  616. }
  617. public static void AddAttributeIfNotExists(NameValueCollection target, string attributeName, string attributeValue)
  618. {
  619. if (target == null || attributeName == null) return;
  620. if (string.IsNullOrEmpty(target[attributeName]))
  621. {
  622. target[attributeName] = attributeValue;
  623. }
  624. }
  625. public static byte[] BinarySerialize(object obj)
  626. {
  627. using (var stream = new MemoryStream())
  628. {
  629. new BinaryFormatter().Serialize(stream, obj);
  630. var bytes = stream.ToArray();
  631. return bytes;
  632. }
  633. }
  634. public static T BinaryDeserialize<T>(byte[] bytes, T defaultValue = default(T)) where T : class
  635. {
  636. using (var stream = new MemoryStream(bytes))
  637. {
  638. return new BinaryFormatter().Deserialize(stream) as T;
  639. }
  640. }
  641. public static byte[] BinarySerialize(string str)
  642. {
  643. if (str != null)
  644. {
  645. return Encoding.UTF8.GetBytes(str);
  646. }
  647. return null;
  648. }
  649. public static string BinaryDeserialize(byte[] bytes)
  650. {
  651. if (bytes != null)
  652. {
  653. return Encoding.UTF8.GetString(bytes);
  654. }
  655. return null;
  656. }
  657. }
  658. }