对象序列化成XML存储,XML反序列换成对象

前端之家收集整理的这篇文章主要介绍了对象序列化成XML存储,XML反序列换成对象前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  1. using UnityEngine;
  2. using System.Collections;
  3. using System.Xml;
  4. using System.Xml.Serialization;
  5. using System.IO;
  6. using System.Text;
  7.  
  8. public static class GameDataMgr
  9. {
  10. static public T LoadData<T>(string name,string path)
  11. {
  12. T result=default(T);
  13. string str_Data = LoadXML(name,path);
  14. if (string.IsNullOrEmpty(str_Data) == true)
  15. {
  16. return result;
  17. }
  18.  
  19. result = DeserializeObject<T>(str_Data);
  20. return result;
  21. }
  22.  
  23. static public void SaveData<T>(T data,string mPath,string mFileName)
  24. {
  25. string str_Data = SerializeObject(data);
  26. SaveXML(str_Data,mPath,mFileName);
  27. }
  28.  
  29. static private void SaveXML(string data,string path,string fileName)
  30. {
  31. StreamWriter sw;
  32. FileInfo fi = new FileInfo(path + "/" + fileName);
  33. if (fi.Exists == false){
  34. sw = fi.CreateText();
  35. }
  36. else{
  37. fi.Delete();
  38. sw = fi.CreateText();
  39. }
  40. sw.Write(data);
  41. sw.Close();
  42. Debug.Log("SaveXML:" + data);
  43. }
  44.  
  45. static private string LoadXML(string fileName,string path)
  46. {
  47. string str_FilePath = path + "/" + fileName;
  48. FileInfo fi = new FileInfo(str_FilePath);
  49. if (fi.Exists == false){
  50. return null;
  51. }
  52. StreamReader sr = File.OpenText(str_FilePath);
  53. if (sr != null){
  54. string str_Data = sr.ReadToEnd();
  55. sr.Close();
  56. return str_Data;
  57. }
  58. else{
  59. return null;
  60. }
  61. }
  62.  
  63. static private string SerializeObject<T>(T obj)
  64. {
  65. string str_XmlizedString = null;
  66. MemoryStream ms = new MemoryStream();
  67. XmlSerializer xs = new XmlSerializer(typeof(T));
  68. XmlTextWriter xtw = new XmlTextWriter(ms,Encoding.UTF8);
  69. xs.Serialize(xtw,obj);
  70. ms = (MemoryStream)xtw.BaseStream;
  71. str_XmlizedString = UTF8ByteArrayToString(ms.ToArray());
  72. return str_XmlizedString;
  73. }
  74.  
  75. static private T DeserializeObject<T>(string str_XmlizedString)
  76. {
  77. XmlSerializer xs = new XmlSerializer(typeof(T));
  78. MemoryStream ms = new MemoryStream(StringToUTF8ByteArray(str_XmlizedString));
  79. return (T)xs.Deserialize(ms);
  80. }
  81.  
  82. static private string UTF8ByteArrayToString(byte[] ba)
  83. {
  84. UTF8Encoding ue = new UTF8Encoding();
  85. string str_Constructed = ue.GetString(ba);
  86. return (str_Constructed);
  87. }
  88.  
  89. static private byte[] StringToUTF8ByteArray(string str_XmlString)
  90. {
  91. UTF8Encoding ue = new UTF8Encoding();
  92. byte[] ba = ue.GetBytes(str_XmlString);
  93. return ba;
  94. }
  95. }
  96. //public class SmallGameData{
  97. // public string name;
  98. //}

实例

  1. using UnityEngine;
  2. using System.Collections;
  3.  
  4. public class SmallGameData{
  5. static private SmallGameData instence;
  6. static public SmallGameData Instence{
  7. get{
  8. if(instence==null){
  9. instence=GameDataMgr.LoadData<SmallGameData>(SmallGameData.FileName,SmallGameData.FileName);
  10. if(instence==null){
  11. instence=new SmallGameData();
  12. }
  13. }
  14. return instence;
  15. }
  16. }
  17.  
  18. private SmallGameData(){
  19.  
  20. }
  21.  
  22. static private string filePath=Application.persistentDataPath;
  23. static public string FilePath {get {return filePath;}}
  24.  
  25. static private string fileName="SmallGameData.xml";
  26. static public string FileName {get {return fileName;}}
  27.  
  28.  
  29. private string name;
  30. public string Name {get {return name;}set {name = value;}}
  31. }

猜你在找的XML相关文章