PublicFunction.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Data;
  5. using System.Text.RegularExpressions;
  6. using MySystem.Models;
  7. using Library;
  8. namespace MySystem
  9. {
  10. public class PublicFunction
  11. {
  12. public static decimal NumberFormat(decimal number, int floatCount = 2)
  13. {
  14. string str = number.ToString();
  15. if (str.Contains("."))
  16. {
  17. string[] list = str.Split('.');
  18. if (list[1].Length > floatCount)
  19. {
  20. str = list[0] + "." + list[1].Substring(0, floatCount);
  21. }
  22. }
  23. else
  24. {
  25. str += ".00";
  26. }
  27. return decimal.Parse(str);
  28. }
  29. public static string GetPublicParam(WebCMSEntities db, string Key)
  30. {
  31. CustomTagSet set = db.CustomTagSet.FirstOrDefault(m => m.Tags == Key);
  32. if(set != null)
  33. {
  34. return set.Contents;
  35. }
  36. return "";
  37. }
  38. #region 获取网络文件内容
  39. public static string GetNetFileContent(string url)
  40. {
  41. string textContent = "";
  42. using (var client = new System.Net.WebClient())
  43. {
  44. try
  45. {
  46. textContent = client.DownloadString(url); // 通过 DownloadString 方法获取网页内容
  47. }
  48. catch (Exception ex)
  49. {
  50. function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString() + "\n\n", "获取网络文件内容异常");
  51. }
  52. }
  53. return textContent;
  54. }
  55. public static byte[] GetNetFileData(string url)
  56. {
  57. byte[] textContent = new byte[] { };
  58. using (var client = new System.Net.WebClient())
  59. {
  60. try
  61. {
  62. textContent = client.DownloadData(url); // 通过 DownloadString 方法获取网页内容
  63. }
  64. catch (Exception ex)
  65. {
  66. function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString() + "\n\n", "获取网络文件流异常");
  67. }
  68. }
  69. return textContent;
  70. }
  71. #endregion
  72. }
  73. }