unity 加载读取外部XML
cfg.xml
<rootNode> <category name="网站"> <item name="mainPage">www.4463.com</item> </category > </rootNode>
testReadXml.cs
using UnityEngine; using System.Collections; using System.Xml; public class testReadXml : MonoBehaviour { public string xmlURL;//http://192.168.1.106/app/cfg.xml void Start () { StartCoroutine (getXML()); } IEnumerator getXML(){ WWW www = new WWW (xmlURL); string progress; while(!www.isDone){ progress=(((int)(www.progress * 100)) % 100) + "%"; Debug.Log (progress); yield return 1; } if(www.error!=null){ Debug.Log ("loading error:"+www.url); }else{ progress="100%"; Debug.Log (progress); //enter complete code Debug.Log(www.text); parseXML(www.text); } } private void parseXML(string xmlText){ XmlDocument xmlDoc=new XmlDocument(); xmlDoc.LoadXml(xmlText); XmlNodeList nodeList=xmlDoc.SelectSingleNode("rootNode").ChildNodes; for(int i=0;i<nodeList.Count;i++){ XmlElement category=nodeList[i] as XmlElement; Debug.Log (category.GetAttribute("name"));//output: 网站 Debug.Log (category.InnerXml);//output: <item name="mainPage">www.4463.com</item> for(int j=0;j<category.ChildNodes.Count;j++){ XmlElement item=category.ChildNodes[j] as XmlElement; Debug.Log (item.GetAttribute("name"));//output: mainPage Debug.Log (item.InnerXml);//output: www.4463.com Debug.Log (item.InnerText);//output: www.4463.com } } } }
【推荐】FFA 2024大会视频回放:Apache Flink 的过去、现在及未来
【推荐】中国电信天翼云云端翼购节,2核2G云服务器一口价38元/年
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 使用 .NET Core 实现一个自定义日志记录器
· [杂谈]如何选择:Session 还是 JWT?
· 硬盘空间消失之谜:Linux 服务器存储排查与优化全过程
· JavaScript是按顺序执行的吗?聊聊JavaScript中的变量提升
· [杂谈]后台日志该怎么打印
· 2000 Star,是时候为我的开源项目更新下功能了
· 好消息,在 Visual Studio 中可以免费使用 GitHub Copilot 了!
· 工作中这样用MQ,很香!
· 基于.NET WinForm开发的一款硬件及协议通讯工具
· 使用 .NET Core 实现一个自定义日志记录器