XML 在WEB上加载的路径问题!

前端之家收集整理的这篇文章主要介绍了XML 在WEB上加载的路径问题!前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在web上 需要用Resources来进行加载,否则读取不到

  /// <summary>
        /// 加载xml文档
        /// </summary>
        /// <returns></returns>
        public static XmlDocument ReadAndLoadXml()
        {
            
            XmlDocument doc = new XmlDocument();
            TextAsset textAsset = (TextAsset)Resources.Load("XMLFile1");    
            Debug.Log("加载xml文档");
            doc.LoadXml(textAsset.text); 
            return doc;

        }
原文链接:https://www.f2er.com/xml/298991.html

猜你在找的XML相关文章