unity 读取xml 信息

前端之家收集整理的这篇文章主要介绍了unity 读取xml 信息前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1、首先在unity工程中Resources/XML目录下创建xml文件:xmls.xml;

如:

  1. <?xml version ="1.0" encoding = "utf-8"?>
  2. <root>
  3. <parent name ="Lily">
  4. <child name ="L01">123</child>
  5. <child name ="L02">apple</child>
  6. <child name ="L03"></child>
  7. </parent>
  8. </root>

2、定义我们需要的变量:

  1. using System.Xml;

  1. private XmlDocument xmldoc;
  2. private XmlNode root;
  3. private string url;

3、在Start()函数进行初始化:

初始化方法一:

  1. url = Application.dataPath + "/Resources/XML/xmls.xml";
  2. xmldoc = new XmlDocument();
  3. xmldoc.Load(url);
  4. root = xmldoc.SelectSingleNode("root");

初始化方法二:

  1. url = "XML/xmls";
  2. xmlAsset = Resources.Load<TextAsset>(url);
  3. xmldoc = new XmlDocument();
  4. xmldoc.LoadXml(xmlAsset.text);

初始化完成之后、来写我们需要的方法

4、读取Lily:

  1. void ReadLily()
  2. {
  3. XmlElement parent = (XmlElement)root.SelectSingleNode("parent");
  4. Debug.Log(parent.Name + "Name:" + parent.GetAttribute("name"));
  5. }

5、读取所有子节点的值:

  1. void ReadAllChildName()
  2. {
  3. XmlNode parent = root.SelectSingleNode("parent");
  4. XmlNodeList childs = parent.SelectNodes("child");
  5. foreach (XmlNode temp in childs)
  6. {
  7. XmlElement ele = (XmlElement)temp;
  8. Debug.Log(ele.Name + "Name:" + ele.GetAttribute("name") + " value:" + ele.InnerText);
  9. }
  10. }

这样就可以在完成初始化的时候进行调用

结果:

猜你在找的XML相关文章