Unity(二十三) 在StreamingAssets下读取XML

更新自:2020-05-13

    private string name1;
    private string name2;
    private string year1;
    private string year2;
    private string id1;
    private int id2;

public  IEnumerator load()
    {
        string path = string.Empty;
        string line1 = string.Empty;
        if (Application.platform == RuntimePlatform.Android)
        {
            // path = Application.streamingAssetsPath + "/aaa.xml"; 
            path = "jar:file://" + Application.dataPath + "!/assets/" + "aaa.xml";

            WWW wWA = new WWW(path);///WWW读取在各个平台上都可使用
            yield return wWA;
            line1 = wWA.text;
           
           
        }
        else
        {
            // path = "file://" + Application.streamingAssetsPath + "/aaa.xml";
            path = Application.dataPath + "/StreamingAssets" + "/aaa.xml";
            WWW wWA = new WWW(path);
            yield return wWA;
            line1 = wWA.text;
            Debug.Log(line1);

            XmlDocument xml = new XmlDocument();

            //跳过BOM 
            System.IO.StringReader stringReader = new System.IO.StringReader(line1);
            stringReader.Read();
            string result = stringReader.ReadToEnd();
            //关闭
            stringReader.Close();


            xml.LoadXml(result);
            XmlNodeList node = xml.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;
                        }
                    }
                }

            }

          
        }
        yield return null;
    }

XML文件

<item>
  <item1>
    <id>1</id>
    <name>china</name>
    <year>2016</year>
  </item1>
  <item2>
    <id>2</id>
    <name>usa</name>
    <year>2017</year>
  </item2>
</item>

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值