Unity怎么读取xml文件:pc端

目录

 

一、参考:

一、读取已经写好的xml文件

1、新建xml文件

2、Unity添加代码

3、注意


一、参考:

https://www.cnblogs.com/NBOWeb/p/8968036.html

一、读取已经写好的xml文件

1、新建xml文件

①将其放到指定文件夹中,文件夹位置在后面代码中是可以修改的

Unity怎么读取xml文件:pc端_第1张图片


  
    1
    china
    2016
  
  
    2
    usa
    2017
  

2、Unity添加代码

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System.Xml;
using System.IO;

//按键操作物体移动
public class _move : MonoBehaviour
{
    private string name1;
    private string name2;
    private string year1;
    private string year2;
    private string id1;
    private int id2;

    void Start()
    {
        parseXml();
    }

    //解析xml
    void parseXml()
    {
        //也可以前面加上@,区别就是有@的话,双引号里面的内容不转义,比如" \" "
        //string filePath = Application.dataPath+@"/Resources/item.xml";
        string filePath = Application.dataPath + "/Resources/item.xml";
        if (File.Exists(filePath))
        {
            XmlDocument xmlDoc = new XmlDocument();
            xmlDoc.Load(filePath);
            XmlNodeList node = xmlDoc.SelectSingleNode("item").ChildNodes;
            //遍历节点
            foreach (XmlElement ele in node)
            {
                //item下面的节点
                Debug.Log(ele.Name);

                if (ele.Name == "item1")
                {
                    //first item1
                    foreach (XmlElement i1 in ele.ChildNodes)
                    {
                        Debug.Log(i1.Name);
                        if (i1.Name == "id")
                        {
                            id1 = i1.InnerText;
                        }
                        if (i1.Name == "name")
                        {
                            name1 = i1.InnerText;
                        }
                        if (i1.Name == "year")
                        {
                            year1 = i1.InnerText;
                        }
                    }
                }
                if (ele.Name == "item2")
                {
                    //first item1
                    foreach (XmlElement i2 in ele.ChildNodes)
                    {
                        Debug.Log(i2.Name);
                        if (i2.Name == "id")
                        {
                            id2 =int.Parse(i2.InnerText);
                        }
                        if (i2.Name == "name")
                        {
                            name2 = i2.InnerText;
                        }
                        if (i2.Name == "year")
                        {
                            year2 = i2.InnerText;
                        }
                    }
                }

            }
        }
        Debug.Log("id1:  " + id1);
        Debug.Log("name1:  " + name1);
        Debug.Log("year1:  " + year1);
        Debug.Log("id2:  " + id2);
        Debug.Log("name2:  " + name2);
        Debug.Log("year2:  " + year2);
    }


}

 

Unity怎么读取xml文件:pc端_第2张图片

3、注意

①使用装换将string转换为int类型,配置文件中的string类型无法转换,只能是配置文件中就是int的类型

id2 =int.Parse(i2.InnerText);

 

你可能感兴趣的:(Unity)