博客
关于我
关于Unity路径(移动平台动态读取外部文件)
阅读量:215 次
发布时间:2019-02-28

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

?Unity3D????????????????????????????????????????????Windows??Mac??????????PC????????????????????????????????????????????????????????????????????????????????CSV???XML???

?Unity3D???????????????????????????????????????XML?JSON???????????????????????????????????????????????????????????????

???????C#?Unity3D?????XML????????????????????????????XML??????????????

???????

using System;using System.IO;using System.Collections.Generic;using System.Linq;using System.Xml;public class XmlToObject
where T : new(){ public T ParseXml(string filePath) { var xml = File.ReadAllText(filePath); var root = Xml.Deserialize(xml) as XmlNode; if (root.Name != "???") { throw new ArgumentException("?????"); } var obj = new T(); var properties = obj.GetType().GetProperties(); foreach (XmlNode node in root.ChildNodes) { var property = properties.FirstOrDefault(p => p.Name == node.Name); if (property == null) { continue; } var value = node.Value; if (value != null) { property.SetValue(obj, value); } } return obj; }}

?????????????XML?????????????????????????????????????????????????????????????

?????????????????????????????????????????????XML???????????????????????????????????????????????????

转载地址:http://irei.baihongyu.com/

你可能感兴趣的文章
Nio ByteBuffer组件读写指针切换原理与常用方法
查看>>
NIO Selector实现原理
查看>>
nio 中channel和buffer的基本使用
查看>>
NISP一级,NISP二级报考说明,零基础入门到精通,收藏这篇就够了
查看>>
NI笔试——大数加法
查看>>
NLP 基于kashgari和BERT实现中文命名实体识别(NER)
查看>>
Nmap扫描教程之Nmap基础知识
查看>>
Nmap端口扫描工具Windows安装和命令大全(非常详细)零基础入门到精通,收藏这篇就够了
查看>>
NMAP网络扫描工具的安装与使用
查看>>
NN&DL4.1 Deep L-layer neural network简介
查看>>
NN&DL4.3 Getting your matrix dimensions right
查看>>
NN&DL4.8 What does this have to do with the brain?
查看>>
No 'Access-Control-Allow-Origin' header is present on the requested resource.
查看>>
No Datastore Session bound to thread, and configuration does not allow creation of non-transactional
查看>>
No fallbackFactory instance of type class com.ruoyi---SpringCloud Alibaba_若依微服务框架改造---工作笔记005
查看>>
No Feign Client for loadBalancing defined. Did you forget to include spring-cloud-starter-loadbalanc
查看>>
No mapping found for HTTP request with URI [/...] in DispatcherServlet with name ...的解决方法
查看>>
No module named cv2
查看>>
No module named tensorboard.main在安装tensorboardX的时候遇到的问题
查看>>
No module named ‘MySQLdb‘错误解决No module named ‘MySQLdb‘错误解决
查看>>