using UnityEngine;
using System.Collections;
using System.Linq;
using System.Xml.Linq;
using System; public class XML {
//static string xmlpath = Application.persistentDataPath + @"\myXML";//平台相关的路径(移动端)
static string xmlpath=Application.dataPath+@"\mydfdfXML";//电脑上的路径,移动端没有这个访问权限
/// <summary>
/// 初始化一个XML文件
/// </summary>
public static void CreateXMLDocument()
{
XElement root = new XElement("XMLContent",
new XElement("Herb1",new XAttribute("MyVaule","")),
new XElement("Herb2",new XAttribute("MyVaule","")),
new XElement("Herb3",new XAttribute("MyVaule","")),
new XElement("Pill1",new XAttribute("MyVaule","")),
new XElement("Pill2",new XAttribute("MyVaule","")),
new XElement("Pill3",new XAttribute("MyVaule","")),
new XElement("Level",new XAttribute("MyVaule","")),
new XElement("Root","root")
);
root.Save(xmlpath);
}
public static XElement LoadXMLFromFile()
{
XElement root = XElement.Load(xmlpath);
return root;
}
public static void SetElementValue(string name, string value)
{
XElement root = LoadXMLFromFile();
root.Element(name).SetAttributeValue("MyVaule", value);
root.Save(xmlpath);
}
/// <summary>
/// 在根节点元素之前添加新的元素
/// </summary>
/// <param name="name">元素名字</param>
/// <param name="value">元素的值</param>
public static void AddElement(string name, string value)
{
XElement root = LoadXMLFromFile();
root.Element("Root").AddBeforeSelf(new XElement(name, new XAttribute("MyValue",value)));
root.Save(xmlpath);
}
/// <summary>
/// 删除指定的元素
/// </summary>
/// <param name="name">要删除的元素名称</param>
public static void RemoveElement(string name)
{
XElement root = LoadXMLFromFile();
root.Element(name).Remove();
root.Save(xmlpath);
}
/// <summary>
/// 根据元素名查找元素对应的值
/// </summary>
/// <param name="name">元素名</param>
/// <returns></returns>
public static string GetElementValue(string name)
{
XElement root = LoadXMLFromFile();
XAttribute xattr = root.Element(name).Attribute("MyVaule");
string s = xattr.Value;
return s;
}
}

http://blog.csdn.net/lyq5655779/article/details/7183350

1.写XML文件

  1. XElement xperson = new XElement("person");//根节点
  2. xperson.SetAttributeValue("age", 30);//设置属性
  3. XElement xperson1 = new XElement("person1");
  4. xperson1.Value = "tom";//设置 innerText值
  5. xperson1.SetAttributeValue("sex", "男");
  6. XElement xperson2 = new XElement("person2");
  7. xperson.Add(xperson1);//加入到根结点
  8. xperson.Add(xperson2);
  9. string xml = xperson.ToString();
  10. Console.WriteLine(xml);
  11. using (Stream stream = File.OpenWrite(@"D:\1.xml"))
  12. {
  13. byte[] bytes = new byte[1024];
  14. bytes = Encoding.UTF8.GetBytes(xml);
  15. stream.Write(bytes, 0, bytes.Length);//写入文件
  16. }

2.读取XML文件

----------如何读取xml文件的内容----------------

using(Stream stream=File.OpenRead(@"D:\1.xml"))
            {
               using(StreamReader reader= new StreamReader(stream))
               {
                   //从Reflector从可以看到TextReader的子类是StreamReader所以,可以直接用StreamReader来读取XML文档,传给XDocument.Load方法
                  XDocument xml=XDocument.Load(reader);//load里面
                  Console.WriteLine( xml.Root.ToString());//xml文档
                  Console.WriteLine(xml.Root.Nodes().ElementAt(0).ToString());//ElementAt()第几个子节点 
                  Console.WriteLine(xml.Root.Attribute("age").Value);//返回根节点的属性的值
                  XNode nodes=xml.Root.Nodes().ElementAt(0);
                  XElement e=nodes as XElement;
                  Console.WriteLine(e.Attribute("sex").Value);//读取第一个子节点的属性
                }
            
            }

3.读取App.Config

using (Stream stream = File.OpenRead(@"D:\net实例教程\练习net\XML练习\XML练习\App.config"))
            {
                using (StreamReader reader = new StreamReader(stream))
                {
                    XDocument xml = XDocument.Load(reader);
                    XNode n1 = xml.Root.Nodes().ElementAt(0);//这就是<configuration> ------下面----<connectionStrings>
                    XElement e1 = n1 as XElement;
                    XNode n1_1 = e1.Nodes().ElementAt(0);//connectionStrings下面的<add .....>第一个
                    XNode n1_2 = e1.Nodes().ElementAt(1);//connectionStrings下面的<add .....>第一个
                    XElement e1_1 = n1_1 as XElement;
                    XElement e1_2 = n1_2 as XElement;
                    //Console.WriteLine("Name={0},Connection={1}", e1.Attribute("name").Value, e1.Attribute("connectionString").Value);
                    Console.WriteLine("第一个连接字符串的name={0},Connection={1}", e1_1.Attribute("name"), e1_1.Attribute("connectionString"));

Console.WriteLine("第一个连接字符串的name={0},Connection={1}", e1_2.Attribute("name"), e1_2.Attribute("connectionString"));

}
            }

    1. using (Stream stream = File.OpenRead(@"D:\net实例教程\练习net\XML练习\XML练习\App.config"))
    2. {
    3. using (StreamReader reader = new StreamReader(stream))
    4. {
    5. XDocument xml=XDocument.Load(reader);
    6. IEnumerable<XElement> XConnstr = xml.Root.Elements("connectionStrings");
    7. Console.WriteLine(XConnstr.Count().ToString());
    8. if (XConnstr.Count() == 1)
    9. {
    10. XElement Connstr = XConnstr.ElementAt(0);
    11. foreach(XElement conn in Connstr.Elements("add"))
    12. {
    13. string name = conn.Attribute("name").Value;
    14. string Connection = conn.Attribute("connectionString").Value;
    15. Console.WriteLine("Name={0},Age={1}", name, Connection);
    16. }
    17. }
    18. }
    19. }

http://blog.csdn.net/xutao_ustc/article/details/6316933

<?xml version="1.0" encoding="utf-8" ?>
<UIConfig Count="1">
<workflow name="OilInbound">
<activity name="Started">
<Input>
<Page></Page>
<Method></Method>
</Input>
<Brief>
<Page>OilInboundTaskDetail</Page>
<Method>GetTaskDetailModel</Method>
</Brief>
<Detail>
<Page>OilInboundTaskDetail</Page>
<Method>GetTaskDetailModel</Method>
</Detail>
<DisplayName>任务创建</DisplayName>
</activity>
<activity name="OilCompositionAnalysis">
<Input>
<Page>OilAnalyzingDataInput</Page>
<Method>GetOilAnalyzingDataInputModel</Method>
</Input>
<Brief>
<Page>OilAnalyzingDataBrief</Page>
<Method>GetOilAnalyzingDataBriefModel</Method>
</Brief>
<Detail>
<Page>OilAnalyzingDataDetail</Page>
<Method>GetOilAnalyzingDataDetailModel</Method>
</Detail>
<DisplayName>化验</DisplayName>
</activity>
</workflow>
</UIConfig>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
using System.Xml.Linq;
using System.Xml;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
XElement doc = XElement.Load("..//..//data-config.xml");//根元素
string sss = getStr(doc, "OilInbound", "Started", "Input", "Page");
Console.WriteLine(sss);
Console.ReadKey();
}
//如果当前元素的子元素只有一个,可以直接用.Element("elementName")来得到,如果是多个子元素就用Elements("elementName")得到
private static string getStr(XElement doc,string workflowName,string stepName,string typeName,string pageMethod) {
var strEle = from workflow in doc.Elements("workflow")
where (string)workflow.Attribute("name") == workflowName
select
new{
str = workflow.Elements("activity").TakeWhile(x => (string)x.Attribute("name") == stepName).First().Element(typeName).Element(pageMethod).Value
};
return strEle.First().str;
}
}
}

Unity上使用Linq To XML的更多相关文章

  1. Linq to Xml读取复杂xml(带命名空间)

    前言:xml的操作方式有多种,但要论使用频繁程度,博主用得最多的还是Linq to xml的方式,觉得它使用起来很方便,就用那么几个方法就能完成简单xml的读写.之前做的一个项目有一个很变态的需求:C ...

  2. c#操作xml文件(XmlDocument,XmlTextReader,Linq To Xml)

    主界面

  3. C# ~ 从 XML 到 Linq 到 Linq to XML

    .XML 可扩展标记语言 (Extensible Markup Language), 标记 (markup) 是关键部分,是标准通用标记语言 (Standard Generalized Markup ...

  4. 不挣扎了,开始学习LINQ TO XML,进而来解析网页。

    找到了别人遇到和我一样的问题:http://ylad.codeplex.com/discussions/430095(英文) 一位叫做Mister Goodcat的提供了信息: Short answe ...

  5. Linq学习笔记---Linq to Xml操作

    LINQ to XML的成员, 属性列表: 属性 说明 Document 获取此 XObject 的 XDocument  EmptySequence  获取空的元素集合  FirstAttribut ...

  6. C#学习之Linq to Xml

    前言 我相信很多从事.NET开发的,在.NET 3.5之前操作XML会比较麻烦,但是在此之后出现了Linq to Xml,而今天的主人公就是Linq to Xml,废话不多说,直接进入主题. 题外:最 ...

  7. C#中的Linq to Xml详解

    这篇文章主要介绍了C#中的Linq to Xml详解,本文给出转换步骤以及大量实例,讲解了生成xml.查询并修改xml.监听xml事件.处理xml流等内容,需要的朋友可以参考下 一.生成Xml 为了能 ...

  8. LINQ TO XML 个人的一些心得1

    最近没事做,刚来到一个新公司.写了一些处理xml的项目  就是把一些xml的数据处理后存储到数据库中.原本还是准备用原来的xml来写的.在群里有个人说,用linq to xml 好了,比较快捷.就看了 ...

  9. 24.C#LINQ TO XML(十二章12.3)

    自己也写了那么多,但还有很多不懂,有点浮躁吧,但饭还是要吃啊,说说LINQ TO XML吧. LINQ TO XML位于System.Xml.Linq程序集,并且大多数类型位于System.Xml.L ...

随机推荐

  1. Perl 随机数和随机密码的产生

    Perl有着强大的随机数产生函数rand(),下面的代码详细介绍其应用 #!/usr/bin/perl #  use strict;   use warnings; # 0~1之间    $rando ...

  2. NOJ1008-第几天

    第几天 时间限制(普通/Java) : 1000 MS/ 3000 MS          运行内存限制 : 65536 KByte总提交 : 2701            测试通过 : 800  ...

  3. 【转】Hibernate入门实例

    1. 环境配置 1.1 hiberante环境配置 hibernate可实现面向对象的数据存储.hibernate的官网:http://hibernate.org/ 官网上选择hibernate OR ...

  4. 6.24 AppCan移动开发者大会:议程重大更新,报名即将关闭

    大会倒计时2天,议程重大更新,报名通道即将关闭! 创业6年,由AppCan主办的第一届移动开发者大会将在本周五盛大召开.超过100万开发者线上参与.现场1500人规模.50家移动互联企业深度参与.30 ...

  5. hdu 2648 Shopping

    原题链接:http://acm.hdu.edu.cn/showproblem.php?pid=2648 纯暴力的方法T_T... 如下: #include<cstdio> #include ...

  6. iOS学习之C语言内存管理

         一.存储区划分      按照地址从高到低的顺序:栈区,堆区,静态区,常量区,代码区    1.栈区:局部变量的存储区域     局部变量基本都在函数.循环.分支中定义     栈区的内存空 ...

  7. action属性

    action属性 2013年7月8日 14:52 Path: action的访问路径,以"/"开头 Type: action的类型 Name: action使用的actionFor ...

  8. springboot注解

    @RestController和@RequestMapping注解 我们的Example类上使用的第一个注解是 @RestController .这被称为一个构造型(stereotype)注解.它为阅 ...

  9. [收藏]win8安装弹出输入的产品密钥与用于安装任何可用windows映像都不匹配

    问题描述: 帮朋友装win8(第一次装大神不要喷我啊)结果到 现在安装 这一步的时候 点击 现在安装 弹出个窗口 说输入的产品密钥与用于安装任何可用windows映像都不匹配.请输入其他产品密钥 解决 ...

  10. sudo配置临时取得root权限

    系统中的普通用户有时需要root权限执行某种操作,要是使用su - root的话必须要知道root的密码,这是不安全的,所以有了sudo,root可以对/etc/sudoers做一定的配置,让普通用户 ...