当前位置:   article > 正文

关于在unity中XML的解析和创建_unity link.xml

unity link.xml
using System.Collections;
using System.Collections.Generic;
using System.Xml;
using UnityEngine;

public class XmlTest : MonoBehaviour {

	// Use this for initialization
	void Start () {
		// ParseXML();
		// ParseXML2();
		CreateXML();
	}
	
	//解析xml方法一
	void ParseXML()
	{
		//xml文档类
		XmlDocument doc = new XmlDocument();
		//读取xml文档
		doc.Load(Application.dataPath+"/Resources/xmldata.xml");
		//读取节点或元素 只有一个节点 first和Last都可以用
		XmlElement rootEle = doc.LastChild as XmlElement;
		//studens节点
		XmlElement studentsEle = rootEle.FirstChild as XmlElement;
		//遍历students节点
		foreach(XmlElement studentEle in studentsEle.ChildNodes)
		{
			//获取ID  id是属性,通过属性方法获取
			string id = studentEle.GetAttribute("id");
			//获取姓名 获取这个表情值
			string name = studentEle.ChildNodes[0].InnerText;
			//获取年龄
			string age = studentEle.ChildNodes[1].InnerText;

			Debug.Log(id+" "+name+" "+age);
		}
	}
    //解析XML方法二
	void ParseXML2()
	{
		//xml文档类
		XmlDocument doc = new XmlDocument();
		//读取xml文档
		doc.Load(Application.dataPath+"/Resources/xmldata.xml");
		//XPath解析方式 路径语法:通用语法,不是为某个数据格式定义的
		//root/students/student/name   //绝对路径
		//    //name相对路径 会进行遍历搜索
		//结合使用 //students/hero[2]/name   可以直接拿第2个元素从1开始 
		//[last()-1]获取倒是2个
		//[position()<3] 获取前两个
		XmlNodeList list = doc.SelectNodes("/root/students/student[last()-1]");
		foreach(XmlElement ele in list)
		{
			Debug.Log(ele.InnerText);//如果想打印name标签名,用ele.name就可以
		}
	}

	void CreateXML()
	{
		//创建文档类
		XmlDocument doc = new XmlDocument();
		//创建文档声明
		XmlDeclaration dec = doc.CreateXmlDeclaration("1.0","utf-8","");
		doc.AppendChild(dec);
		//root节点
		XmlElement rootEle = doc.CreateElement("root");
		doc.AppendChild(rootEle);
		//students节点
		XmlElement studentsEle = doc.CreateElement("students");
		rootEle.AppendChild(studentsEle);
		//循环数据
		string[] names = new string[]{"小明","小白","小红"};
		int[] ages = new int[]{18,19,20};
		//循环创建student节点
		for(int i=0;i<3;i++)
		{
			XmlElement studentEle = doc.CreateElement("student");
			studentsEle.AppendChild(studentEle);

			//name节点
			XmlElement nameEle = doc.CreateElement("name");
			nameEle.InnerText = names[i];
			studentEle.AppendChild(nameEle);

			//年龄节点
			XmlElement ageEle = doc.CreateElement("age");
			ageEle.InnerText = ""+ages[i];
			studentEle.AppendChild(ageEle);

			//添加属性
			// studentEle.SetAttribute("id",i+"");
			XmlAttribute att = doc.CreateAttribute("id");
			att.Value = i+ "";
			studentEle.Attributes.Append(att);
		}

		//保存
		doc.Save(Application.dataPath + "/Resources/xmldata.xml");
	}
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/115361
推荐阅读
相关标签
  

闽ICP备14008679号