菜的像徐坤
排名
7
文章
192
粉丝
15
评论
16
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术

MVC XML获取指定路径下的XML文件

6229人阅读 2021/4/20 20:36 总访问:965577 评论:0 收藏:0 手机
分类: XML

首先通过路径找到XML文件

  1.  //通过指定路径找到XML文件
  2.  XElement xDoc = XElement.Load(Server.MapPath("~/xml/labery.xml"));

找到根节点下的节点信息

  1. //books有多个用集合
  2. List<XElement> x = xDoc.Elements("books").ToList();
  3. //books有一个用对象
  4. XElement x = xDoc.Element("books").Value;

创建相同名字的节点

  1.             //子节点
  2.             XElement books = new XElement("books");
  3.               labery.Add(books);
  4.             //子节点下边的子节点
  5.             string b1 = "斗破苍穹";
  6.             books.Add(new XElement("bookname", b1));
  7.             books.Add(new XElement("bookmoney""36$"));
  8.             books.Add(new XElement("bookkind""武侠"));
  9.             books.Add(new XElement("bookpaper""区区斗皇............."));
  10.             
  11.             
  12.             books = new XElement("books");
  13.             string b2 = "斗罗大陆";
  14.             books.Add(new XElement("bookname", b2));
  15.             books.Add(new XElement("bookmoney""33$"));
  16.             books.Add(new XElement("bookkind""仙侠"));
  17.             books.Add(new XElement("bookpaper""区区八个魂环............."));
  18.             labery.Add(books);
  19.             
  20.             
  21.             
  22.             
  23.             books = new XElement("books");
  24.             string b3 = "王者荣耀";
  25.             books.Add(new XElement("bookname", b3));
  26.             books.Add(new XElement("bookmoney""12$"));
  27.             books.Add(new XElement("bookkind""游戏"));
  28.             books.Add(new XElement("bookpaper""区区最强王者............."));
  29.             labery.Add(books);


评价

解决XML添加新元素问题

最近遇到一个xml在末尾添加节点报错问题,如下图!网上搜了一下解决方式如下

c中插入XML的命名空间

直接贴代码吧XDocumentdocument=newXDocument(newXDeclaration(&quot;1.0&quot;,&quot;UTF-8&quot;,&quot;yes&quot;)); XN...

.net Core 处理XML输出格式

services.AddMvc(option=&gt;{ option.ReturnHttpNotAcceptable=true; option.OutputFormatters.Add(newXmlDataContractS...

XDocument创建XML文件和读取文件

创建根节点创建父节点创建子节点范例: //获取根节点对象 XDocument document = new XDocument(); //创建根节点下的...

XML文件的读写

各位童鞋们,今天我们一起来学习一下XML文件的读取XML用途:配置、传输、储存。引入命名口空间:using System.Xml.Linq;话...

.NET MVC 中 XML的创建读取操作

在.net mvc中,想要进行读取xml的操作需要以下步骤: Xml用途:配置、传输、储存。1,先要导入命名空间:如下图: 2,我们需要...

XML读取和写入

第一步先引入using System.Xml.Linq;一、写入1)、上图中XElement configuration = new XElement(&quot;configuration(取名...

开发winform XML文件生成C类文件工具

最近项目中用到了博通PLC采集图像数据保存的业务,需要解析软件返回的xml文件,然后保存到数据库。为了方便就自己整了一个x...

XML解析字符串

字符串格式变成xmlXElementroot=XElement.Parse(result)或者XDocument.load

XML 基础读写

前言MVC操作XML 首先引入 using System.Xml.Linq;创建XML文件需要创建根节点 //根节点 XElementlabery=newXElement(&quot...

XML添加,添加,删除,修改

代码如下:publicActionResultIndex() { XDocumentdocument=newXDocument(newXDeclaration(&quot;1.0&quot;,&quot;UTF-8&...

.net XML删除节点

publicActionResultRemove() { stringuri=Server.MapPath(&quot;~/xml/book.xml&quot;); varroot=XElement.Load(uri);...

.net XML更新节点

publicActionResultUpdate() { stringuri=Server.MapPath(&quot;~/xml/boos2.xml&quot;); varroot=XElement.Load(uri)...

XML读取

//获取root节点 XElementroot=XElement.Load(Server.MapPath(&quot;~/路径文件名&quot;)); //根据路径得到值root里面的第...

.NET Core使用NSwagger实现Api文档生成与版本控制。生成XML文件

参考代码下载地址:https://download.tnblog.net/resource/index/ba55ad0850ca4b71bc56855d0b4782d1一:下载NSwag环境Insta...