Config.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. using Newtonsoft.Json;
  2. using Newtonsoft.Json.Linq;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Dynamic;
  6. using System.IO;
  7. using System.Linq;
  8. using System.Web;
  9. /// <summary>
  10. /// Config 的摘要说明
  11. /// </summary>
  12. ///
  13. namespace LYFZ.WanYuKeFuData.UEditControl
  14. {
  15. public static class Config
  16. {
  17. private static bool noCache = true;
  18. private static JObject BuildItems()
  19. {
  20. var json = File.ReadAllText(HttpContext.Current.Server.MapPath("config.json"));
  21. return JObject.Parse(json);
  22. }
  23. public static JObject Items
  24. {
  25. get
  26. {
  27. if (noCache || _Items == null)
  28. {
  29. _Items = BuildItems();
  30. }
  31. return _Items;
  32. }
  33. }
  34. private static JObject _Items;
  35. public static T GetValue<T>(string key)
  36. {
  37. return Items[key].Value<T>();
  38. }
  39. public static String[] GetStringList(string key)
  40. {
  41. return Items[key].Select(x => x.Value<String>()).ToArray();
  42. }
  43. public static String GetString(string key)
  44. {
  45. return GetValue<String>(key);
  46. }
  47. public static int GetInt(string key)
  48. {
  49. return GetValue<int>(key);
  50. }
  51. }
  52. }