博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
单独解析xml
阅读量:5125 次
发布时间:2019-06-13

本文共 1422 字,大约阅读时间需要 4 分钟。

using UnityEngine;

using System.Collections;
using System.Collections.Generic;
using System.Xml;
using UnityEngine.UI;
using System.IO;
using System.Text;
public class AnalyzeXMLAlone : MonoBehaviour {
public GameObject aa;
public string _result;
public string score;

void Start()

{
StartCoroutine(Load());
}
IEnumerator Load()
{
string localPath = Application.streamingAssetsPath + "/AndroidLoad.xml";
WWW www = new WWW(localPath);
while (!www.isDone)
{
Debug.Log("Getting GetXML");
yield return www;
ParseXml(www);

}

}
//解析
public void ParseXml(WWW www)
{
List<XmlNode> xmlNodeList = new List<XmlNode>();
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.LoadXml(www.text);
XmlNodeList nodeList = xmlDoc.SelectSingleNode("Image").ChildNodes;
//遍历每一个节点,拿节点的属性以及节点的内容
foreach (XmlElement xe in nodeList)
{
foreach (XmlElement x1 in xe.ChildNodes)
{

//分割为字符串数组(Split)

string newstr = x1.InnerText;
//Debug.Log("newstr+"+newstr);
string[] arr = newstr.Split('|');
//判断文件是否存在,否则下载--成功读取图片名字
//score += arr[1];
// aa.text = "分数是:" + score;
aa.GetComponent<Text>().text = "分数是:" + arr[1];
xmlNodeList.Add(x1);
}

}

//xmlDoc.Save(filepath);

}

void OnGUI()
{
GUIStyle titleStyle = new GUIStyle();
titleStyle.fontSize = 20;
titleStyle.normal.textColor = new Color(46f / 256f, 163f / 256f, 256f / 256f, 256f / 256f);
GUI.Label(new Rect(400, 10, 500, 200), _result, titleStyle);
}
}

转载于:https://www.cnblogs.com/ZeroMurder/p/5615827.html

你可能感兴趣的文章
Win7下安装配置gVim
查看>>
【Demo 0011】多媒体播放器
查看>>
MySql DDL语言(数据库和数据表的管理)
查看>>
用示例说明BitMap索引的效率要优于B-Tree索引
查看>>
EF(Entity FrameWork)实体框架
查看>>
git基础-远程仓库的使用
查看>>
Elasticsearch及相关插件的安装
查看>>
Unknown storage engine 'InnoDB'
查看>>
Windows 环境下运用Python制作网络爬虫
查看>>
Wincc V7.3SE安装截图
查看>>
转载——开阔自己的视野,勇敢的接触新知识
查看>>
UML中的6大关系(关联、依赖、聚合、组合、泛化、实现)
查看>>
北京集训:20180310
查看>>
位运算 中度难度 子集
查看>>
tp5无刷新分页
查看>>
51单片机学习笔记之定时器程序设计
查看>>
Java——容器(泛型)
查看>>
javascript删除数组里的对象
查看>>
springcloud20---Config加入eureka
查看>>
Linux系统添加永久静态路由的方法
查看>>