XML随笔

读取Xml节点内容
public void readXml()
{
 string str = "";
            XmlReader re = XmlReader.Create(@"d://s.xml");
            while (re.Read())
            {
                if (re.NodeType == XmlNodeType.Text)
                {
                    str += re.Value+"\r\n";
                }
            }
          console.writeline(str);
}

XmlDocument

下载节点为“title”的内容

public void read()

{

string str="";

 XmlDocument doc = new XmlDocument();
            doc.Load(@"d://s.xml");
            XmlNodeList nod = doc.GetElementsByTagName("title");
            foreach (XmlNode no in nod)
            {
                str += no.OuterXml + "\r\n";
            }

}

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Xml;

namespace 读取XML
{
    /// <summary>
    /// Xml文件读取器
    /// </summary>

    public class XmlReader : IDisposable
    {
        private string _xmlPath;
        private const string _errMsg = "Error Occurred While Reading ";
        private ListBox _listBox;
        private XmlTextReader xmlTxtRd;

        #region XmlReader 的构造器

        public XmlReader()
        {
            this._xmlPath = string.Empty;
            this._listBox = null;
            this.xmlTxtRd = null;
        }

        /// <summary>
        /// 构造器
        /// </summary>
        /// <param name="_xmlPath">xml文件绝对路径</param>
        /// <param name="_listBox">列表框用于显示xml</param>

        public XmlReader(string _xmlPath, ListBox _listBox)
        {
            this._xmlPath = _xmlPath;
            this._listBox = _listBox;
            this.xmlTxtRd = null;
        }

        #endregion
        #region XmlReader 的资源释放方法

        /// <summary>
        /// 清理该对象所有正在使用的资源

        /// </summary>

        public void Dispose()
        {
            this.Dispose(true);
            GC.SuppressFinalize(this);
        }

        /// <summary>
        /// 释放该对象的实例变量
        /// </summary>
        /// <param name="disposing"></param>

        protected virtual void Dispose(bool disposing)
        {
            if (!disposing)
                return;
            if (this.xmlTxtRd != null)
            {
                this.xmlTxtRd.Close();
                this.xmlTxtRd = null;
            }

            if (this._xmlPath != null)
            {
                this._xmlPath = null;
            }
        }

        #endregion
        #region XmlReader 的属性

        /// <summary>
        /// 获取或设置列表框用于显示xml
        /// </summary>

        public ListBox listBox
        {
            get
            {
                return this._listBox;
            }
            set
            {
                this._listBox = value;
            }
        }

        /// <summary>
        /// 获取或设置xml文件的绝对路径
        /// </summary>

        public string xmlPath
        {
            get
            {
                return this._xmlPath;
            }
            set
            {
                this._xmlPath = value;
            }
        }

        #endregion

        /// <summary>
        /// 遍历Xml文件
        /// </summary>

        public void EachXml()
        {
            this._listBox.Items.Clear();
            this.xmlTxtRd = new XmlTextReader(this._xmlPath);

            try
            {
                while (xmlTxtRd.Read())
                {
                    this._listBox.Items.Add(this.xmlTxtRd.Value);
                }
            }
            catch (XmlException exp)
            {
                throw new XmlException(_errMsg + this._xmlPath + exp.ToString());
            }
            finally
            {
                if (this.xmlTxtRd != null)
                    this.xmlTxtRd.Close();
            }
        }

        /// <summary>
        /// 读取Xml文件的节点类型
        /// </summary>

        public void ReadXmlByNodeType()
        {
            this._listBox.Items.Clear();
            this.xmlTxtRd = new XmlTextReader(this._xmlPath);

            try
            {
                while (xmlTxtRd.Read())
                {
                    this._listBox.Items.Add(this.xmlTxtRd.NodeType.ToString());
                }
            }
            catch (XmlException exp)
            {
                throw new XmlException(_errMsg + this._xmlPath + exp.ToString());
            }
            finally
            {
                if (this.xmlTxtRd != null)
                    this.xmlTxtRd.Close();
            }
        }

        /// <summary>
        /// 根据节点类型过滤Xml文档
        /// </summary>
        /// <param name="xmlNType">XmlNodeType 节点类型的数组</param>

        public void FilterByNodeType(XmlNodeType[] xmlNType)
        {
            this._listBox.Items.Clear();
            this.xmlTxtRd = new XmlTextReader(this._xmlPath);
            try
            {
                while (xmlTxtRd.Read())
                {
                    for (int i = 0; i < xmlNType.Length; i++)
                    {
                        if (xmlTxtRd.NodeType == xmlNType[i])
                        {
                            this._listBox.Items.Add(xmlTxtRd.Name + " is Type " + xmlTxtRd.NodeType.ToString());
                        }
                    }
                }
            }
            catch (XmlException exp)
            {
                throw new XmlException(_errMsg + this.xmlPath + exp.ToString());
            }
            finally
            {
                if (this.xmlTxtRd != null)
                    this.xmlTxtRd.Close();
            }
        }

        /// <summary>
        /// 读取Xml文件的所有文本节点值

        /// </summary>

        public void ReadXmlTextValue()
        {
            this._listBox.Items.Clear();
            this.xmlTxtRd = new XmlTextReader(this._xmlPath);

            try
            {
                while (xmlTxtRd.Read())
                {
                    if (xmlTxtRd.NodeType == XmlNodeType.Text)
                    {
                        this._listBox.Items.Add(xmlTxtRd.Value);
                    }
                }
            }
            catch (XmlException xmlExp)
            {
                throw new XmlException(_errMsg + this._xmlPath + xmlExp.ToString());
            }
            finally
            {
                if (this.xmlTxtRd != null)
                    this.xmlTxtRd.Close();
            }
        }

        /// <summary>
        /// 读取Xml文件的属性
        /// </summary>

        public void ReadXmlAttributes()
        {
            this._listBox.Items.Clear();
            this.xmlTxtRd = new XmlTextReader(this._xmlPath);

            try
            {
                while (xmlTxtRd.Read())
                {
                    if (xmlTxtRd.NodeType == XmlNodeType.Element)
                    {
                        if (xmlTxtRd.HasAttributes)
                        {
                            this._listBox.Items.Add("The Element " + xmlTxtRd.Name + " has " + xmlTxtRd.AttributeCount + " Attributes");

                            this._listBox.Items.Add("The Attributes are:");

                            while (xmlTxtRd.MoveToNextAttribute())
                            {
                                this._listBox.Items.Add(xmlTxtRd.Name + " = " + xmlTxtRd.Value);
                            }
                        }
                        else
                        {
                            this._listBox.Items.Add("The Element " + xmlTxtRd.Name + " has no Attribute");
                        }
                        this._listBox.Items.Add("");
                    }
                }
            }
            catch (XmlException xmlExp)
            {
                throw new XmlException(_errMsg + this._xmlPath + xmlExp.ToString());
            }
            finally
            {
                if (this.xmlTxtRd != null)
                    this.xmlTxtRd.Close();
            }
        }

        /// <summary>
        /// 读取Xml文件的命名空间
        /// </summary>

        public void ReadXmlNamespace()
        {
            this._listBox.Items.Clear();
            this.xmlTxtRd = new XmlTextReader(this._xmlPath);
            try
            {
                while (xmlTxtRd.Read())
                {
                    if (xmlTxtRd.NodeType == XmlNodeType.Element && xmlTxtRd.Prefix != "")
                    {
                        this._listBox.Items.Add("The Prefix " + xmlTxtRd.Prefix + " is associated with namespace " + xmlTxtRd.NamespaceURI);

                        this._listBox.Items.Add("The Element with the local name " + xmlTxtRd.LocalName + " is associated with" + " the namespace " + xmlTxtRd.NamespaceURI);
                    }

                    if (xmlTxtRd.NodeType == XmlNodeType.Element && xmlTxtRd.HasAttributes)
                    {
                        while (xmlTxtRd.MoveToNextAttribute())
                        {
                            if (xmlTxtRd.Prefix != "")
                            {
                                this._listBox.Items.Add("The Prefix " + xmlTxtRd.Prefix + " is associated with namespace " + xmlTxtRd.NamespaceURI);

                                this._listBox.Items.Add("The Attribute with the local name " + xmlTxtRd.LocalName + " is associated with the namespace " + xmlTxtRd.NamespaceURI);

                            }
                        }
                    }
                }
            }
            catch (XmlException xmlExp)
            {
                throw new XmlException(_errMsg + this._xmlPath + xmlExp.ToString());
            }
            finally
            {
                if (this.xmlTxtRd != null)
                    this.xmlTxtRd.Close();
            }
        }

        /// <summary>
        /// 读取整个Xml文件
        /// </summary>

        public void ReadXml()
        {
            string attAndEle = string.Empty;
            this._listBox.Items.Clear();
            this.xmlTxtRd = new XmlTextReader(this._xmlPath);

            try
            {
                while (xmlTxtRd.Read())
                {
                    if (xmlTxtRd.NodeType == XmlNodeType.XmlDeclaration)
                        this._listBox.Items.Add(string.Format("<?{0} {1} ?>", xmlTxtRd.Name, xmlTxtRd.Value));
                    else if (xmlTxtRd.NodeType == XmlNodeType.Element)
                    {
                        attAndEle = string.Format("<{0} ", xmlTxtRd.Name);
                        if (xmlTxtRd.HasAttributes)
                        {
                            while (xmlTxtRd.MoveToNextAttribute())
                            {
                                attAndEle = attAndEle + string.Format("{0}='{1}' ", xmlTxtRd.Name, xmlTxtRd.Value);
                            }
                        }

                        attAndEle = attAndEle.Trim() + ">";
                        this._listBox.Items.Add(attAndEle);
                    }
                    else if (xmlTxtRd.NodeType == XmlNodeType.EndElement)
                        this._listBox.Items.Add(string.Format("</{0}>", xmlTxtRd.Name));
                    else if (xmlTxtRd.NodeType == XmlNodeType.Text)
                        this._listBox.Items.Add(xmlTxtRd.Value);
                }
            }
            catch (XmlException xmlExp)
            {
                throw new XmlException(_errMsg + this._xmlPath + xmlExp.ToString());
            }
            finally
            {
                if (this.xmlTxtRd != null)
                    this.xmlTxtRd.Close();
            }
        }
    }
}

转载于:https://www.cnblogs.com/happygx/archive/2011/02/18/1957860.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/263629.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

一位良心发现的交易员自述:我们是怎么玩弄散户的

我 曾经在一家知名的公司做投资&#xff0c;从研究员做起&#xff0c;后来被抽调去做投资。上个月&#xff0c;我离开了这家公司&#xff0c;总结自己3年的投资经历&#xff0c;越发感觉到自己原来的研究一文不 值&#xff0c;也体会到中国股市中散户是多么可怜和悲哀。下面是我…

如何向虚拟机服务器里传文件,怎么往虚拟机复制文件_如何向虚拟机传文件-win7之家...

在工作中&#xff0c;有时在使用虚拟机的时候需要往虚拟机里传文件的&#xff0c;也有遇到传不了文件的情况&#xff0c;一般都是要重新安装VMware tools下就可以了&#xff0c;那么如何向虚拟机传文件呢&#xff0c;方法很简单不难&#xff0c;下面小编给大家分享往虚拟机复制…

Potato的暑期训练day#1题解 ——毒瘤构造

Potato的暑期训练day#1 ——毒瘤构造 题目链接&#xff1a; A.https://vjudge.net/problem/HDU-1214 B.https://vjudge.net/problem/CodeForces-1174D C.https://vjudge.net/problem/CodeForces-1166E D.https://vjudge.net/problem/HihoCoder-1873 F.https://vjudge.net/probl…

指针08 - 零基础入门学习C语言48

第八章&#xff1a;指针08 让编程改变世界 Change the world by program 返回指针值的函数 一个函数可以带回一个整型值、字符值、实型值等&#xff0c;也可以带回指针型的数据&#xff0c;即地址。 其概念与以前类似&#xff0c;只是带回的值的类型是指针类型而已。 这种…

算法中的递归分析和分治法的原理

分析递归算法三种方法替换法、迭代法、通用法&#xff08;master method&#xff09;作用&#xff1a;分析递归算法的运行时间分治算法将一个问题分解为与原问题相似但规模更小的若干子问题&#xff0c;递归地解这些子问题&#xff0c;然后将这些子问题的解结合起来构成原问题的…

ps4连接r星服务器稳定,移植到不同平台的《GTA5》有什么变化?与八年前相比,差距这么大...

经历过多次移植的GTA5&#xff0c;这些年都产生了哪些变化呢&#xff1f;当年首次登上PS3平台的GTA5&#xff0c;展现出无数玩家羡慕的精彩时刻&#xff0c;但好景不长&#xff0c;PS4就发布了&#xff0c;而且成功了代替了PS3&#xff0c;成为了GTA5玩家的主力军主机&#xff…

关于pycharm+opencv没有代码提示的问题解决方法记录

代码可以看出实际我们引入的应该是cv2.cv2下面. 所以我们代码只需要import cv2.cv2 as cv 即可. 记着要重新启动下pycharm哦. 可以参考:https://blog.csdn.net/az9996/article/details/90546827 转载于:https://www.cnblogs.com/lovesKey/p/11135185.html

17款开源论坛系统/Forum Software(转载)

phpBB phpBB具有友好的用户界面&#xff0c;简单易懂的管理面板和FAQ。你可采用PHPMySQL,MS-SQL,PostgreSQL或Access/ODBC数据库来搭建自己的论坛系统。 OPB OPB是采用PHP5与MySQL开发的PHP开源论坛系统。支持多层Forum结构&#xff0c;提供复杂的内容与版主控制选项&#xff0…

PHP安全笔记

1、 Magic Quotes选项 PHP.INI中中有三个以magic_quotes_开头的选项 magic_quotes_gpc如果是On的话&#xff0c;就会自动用‘\’转义从GET,POST,COOKIE来的数据&#xff0c;这是为什么我们想在URL中输入 ; show tables;--有时候失败的原因&#xff0c;因为被转义了呗…

Web前端开发CSS基础(2)

CSS 层叠样式表(英文全称&#xff1a;Cascading Style Sheets),是一种用来表现HTML(标准通用标记语言的一个应用)或XML(标准通用标记语言的一个子集)等文件样式的计算机语言.CSS不仅可以静态地修饰网页,还可以配合各种脚本语言动态地对网页各元素进行格式化,并且能够对网页中元…

消息摘要算法-MAC算法系列

为什么80%的码农都做不了架构师&#xff1f;>>> 一、简述 mac&#xff08;Message Authentication Code&#xff0c;消息认证码算法&#xff09;是含有密钥散列函数算法&#xff0c;兼容了MD和SHA算法的特性&#xff0c;并在此基础上加上了密钥。因此MAC算法也经常…

对Xml文档进行操作(修改,删除)

<?xml version"1.0" encoding"utf-8"?><Products> <Product id"0" proName"aa1" proPrice"12" proInfo"bb"> </Product> <Product id"1" proName"电脑" pro…

获取真实IP

真正的取真实IP地址及利弊(转自百度空间)目前网上流行的所谓“取真实IP地址”的方法&#xff0c;都有bug&#xff0c;没有考虑到多层透明代理的情况。 多数代码类似&#xff1a; string IpAddress (HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR&q…

Java 中的位运算

移位运算符 包括&#xff1a; “>> 右移”&#xff1b;“<< 左移”&#xff1b;“>>> 无符号右移” 例子&#xff1a;-5>>3-11111 1111 1111 1111 1111 1111 1111 10111111 1111 1111 1111 1111 1111 1111 1111其结果与 Math.floor((double)-5/(…

[转]C++中的三种继承public,protected,private

链接&#xff1a;http://www.cnblogs.com/BeyondAnyTime/archive/2012/05/23/2514964.html

软件开发七宗罪

导读&#xff1a;一起来看看世界各地的程序员们所共有的致命通病&#xff0c;从软件开发的地狱中拯救自己。这七宗罪你有几条&#xff1f; 想成为一名优秀的软件开发人员需要很长时间的培训和实践。但是如果不遵循合适的原则&#xff0c;即便是再好的程序员也会成为失败的牺牲品…

Spring Boot:快速入门教程

什么是Spring Boot? Spring Boot是由Pivotal团队提供的全新框架&#xff0c;其设计目的是用来简化新Spring应用的初始搭建以及开发过程。该框架使用了特定的方式来进行配置&#xff0c;从而使开发人员不再需要定义样板化的配置。简而言之&#xff0c;Spring Boot通过提供默认配…

loadruner11 socket脚本-10053错误

背景: socket 10053异常&#xff1a;软件主动放弃一个连接&#xff0c;原因是超时或协议错误。如果LR客户端报10053异常&#xff0c;说明LR在执行套接字操作时&#xff0c;发生通信超时、网络中断或其它异常&#xff0c;主动将Socket连接断开。也就是说&#xff1a;10053异常是…

万网独享主机Apache为Ecshop商城添加404页面详解

在博客园基本都是做看客的角色&#xff0c;自己基本都没写过文章&#xff0c;不过昨天的经历确实让我有想法了&#xff0c;因为在网络上面看了很多文章&#xff0c;每篇写的都相对较片面&#xff0c;对于我这个Linux新手来说不免有点分不清东南西北&#xff0c;一不小心就浪费了…

移动微技(Mobile Widget)应用开发权威指南

移动微技&#xff08;Mobile Widget&#xff09;应用开发权威指南 基本信息 作者&#xff1a; 程宝平 杨晓华 朱春梅 丛书名&#xff1a; 中国移动创新系列丛书 出版社&#xff1a;电子工业出版社 ISBN&#xff1a;9787121104527 上架时间&#xff1a;2010-4-19 出版日…