찾다
php教程php手册LinqToXML~读XML文件

LinqToXML~读XML文件

Jul 06, 2016 pm 01:30 PM
linqxml나타나다우리를문서

linq的出现,带给我们的是简结,快速,可读性,它由linq to sql,linq to object,linq to xml组成,我的博客之前有对linq to sql的讲解,而今天,我将讲一个linq to xml架构,将对于操作XML文件进行读写操作,它会让你像使用linq to sql一样,操作你的xml

linq的出现,带给我们的是简结,快速,可读性,它由linq to sql,linq to object,linq to xml组成,我的博客之前有对linq to sql的讲解,而今天,我将讲一个linq to xml架构,将对于操作XML文件进行读写操作,它会让你像使用linq to sql一样,操作你的xml文件,OK,我们来看一下,下面的一个XML文件。

复制代码
<?xml version="1.0"?>
<arrayofdatasync xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <datasync>
    <__isset>
      <issync>true</issync>
      <filepath>true</filepath>
      <currentseek>true</currentseek>
      <clientkey>true</clientkey>
      <ordernumber>true</ordernumber>
      <occurtime>true</occurtime>
      <name>false</name>
      <size>false</size>
      <lastdate>false</lastdate>
    </__isset>
    <issync>true</issync>
    <filepath>d:\path\资料\thrift文件\thrift文件\testjava.thrift</filepath>
    <currentseek>1297</currentseek>
    <clientkey>8C:89:A5:E1:89:3D</clientkey>
    <ordernumber>1</ordernumber>
    <occurtime>2014/1/26 15:32:46</occurtime>
    <size>0</size>
  </datasync>
  <datasync>
    <__isset>
      <issync>true</issync>
      <filepath>true</filepath>
      <currentseek>true</currentseek>
      <clientkey>true</clientkey>
      <ordernumber>true</ordernumber>
      <occurtime>true</occurtime>
      <name>false</name>
      <size>false</size>
      <lastdate>false</lastdate>
    </__isset>
    <issync>true</issync>
    <filepath>d:\path\资料\thrift文件\thrift文件\thrift-0.8.0.exe</filepath>
    <currentseek>4013056</currentseek>
    <clientkey>8C:89:A5:E1:89:3D</clientkey>
    <ordernumber>1</ordernumber>
    <occurtime>2014/1/26 15:32:46</occurtime>
    <size>0</size>
  </datasync>
  <datasync>
    <__isset>
      <issync>true</issync>
      <filepath>true</filepath>
      <currentseek>true</currentseek>
      <clientkey>true</clientkey>
      <ordernumber>true</ordernumber>
      <occurtime>true</occurtime>
      <name>false</name>
      <size>false</size>
      <lastdate>false</lastdate>
    </__isset>
    <issync>true</issync>
    <filepath>d:\path\资料\thrift文件\thrift文件\thrift_白皮书.pdf</filepath>
    <currentseek>441217</currentseek>
    <clientkey>8C:89:A5:E1:89:3D</clientkey>
    <ordernumber>1</ordernumber>
    <occurtime>2014/1/26 15:32:46</occurtime>
    <size>0</size>
  </datasync>
  <datasync>
    <__isset>
      <issync>true</issync>
      <filepath>true</filepath>
      <currentseek>true</currentseek>
      <clientkey>true</clientkey>
      <ordernumber>true</ordernumber>
      <occurtime>true</occurtime>
      <name>false</name>
      <size>false</size>
      <lastdate>false</lastdate>
    </__isset>
    <issync>true</issync>
    <filepath>d:\path\资料\thrift文件\thrift文件\thrift命令.txt</filepath>
    <currentseek>131</currentseek>
    <clientkey>8C:89:A5:E1:89:3D</clientkey>
    <ordernumber>1</ordernumber>
    <occurtime>2014/1/26 15:32:46</occurtime>
    <size>0</size>
  </datasync>
</arrayofdatasync>
复制代码

这个文件是thrift自动为我们生成的,现在我们使用linq to xml来读这个文件里的内容读出来,当然你也可以使用XML反序列化的方式,将它反序列化成对象,再读出。

复制代码
  System.Console.WriteLine("Loading XML data...");
            var data =
                (from e in XElement.Load("D:\\path\\资料\\thrift文件\\thrift文件\\fileUploadLog.xml_log.xml")
                                   .Elements("DataSync")
                 select new DataSync
                 {
                     OrderNumber = Convert.ToInt32(e.Element("OrderNumber").Value),
                     IsSync = Convert.ToBoolean(e.Element("IsSync").Value),
                     FilePath = e.Element("FilePath").Value,
                     CurrentSeek = Convert.ToInt64(e.Element("CurrentSeek").Value),
                     ClientKey = e.Element("ClientKey").Value,
                     OccurTime = e.Element("OccurTime").Value,
                 }).ToList();
            data.ForEach(i => System.Console.WriteLine(i.ToString()));
复制代码

而输出的结果如下:

上面的例子中,我们的XML文件使用的是元素的方式,也可以使用属性的形式,代码只要稍作修改即可。


성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.

핫 AI 도구

Undresser.AI Undress

Undresser.AI Undress

사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover

AI Clothes Remover

사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool

Undress AI Tool

무료로 이미지를 벗다

Clothoff.io

Clothoff.io

AI 옷 제거제

AI Hentai Generator

AI Hentai Generator

AI Hentai를 무료로 생성하십시오.

뜨거운 도구

메모장++7.3.1

메모장++7.3.1

사용하기 쉬운 무료 코드 편집기

SecList

SecList

SecLists는 최고의 보안 테스터의 동반자입니다. 보안 평가 시 자주 사용되는 다양한 유형의 목록을 한 곳에 모아 놓은 것입니다. SecLists는 보안 테스터에게 필요할 수 있는 모든 목록을 편리하게 제공하여 보안 테스트를 더욱 효율적이고 생산적으로 만드는 데 도움이 됩니다. 목록 유형에는 사용자 이름, 비밀번호, URL, 퍼징 페이로드, 민감한 데이터 패턴, 웹 셸 등이 포함됩니다. 테스터는 이 저장소를 새로운 테스트 시스템으로 간단히 가져올 수 있으며 필요한 모든 유형의 목록에 액세스할 수 있습니다.

PhpStorm 맥 버전

PhpStorm 맥 버전

최신(2018.2.1) 전문 PHP 통합 개발 도구

Atom Editor Mac 버전 다운로드

Atom Editor Mac 버전 다운로드

가장 인기 있는 오픈 소스 편집기

ZendStudio 13.5.1 맥

ZendStudio 13.5.1 맥

강력한 PHP 통합 개발 환경