C#读取xml文件写入到TreeView中

开发过程中我们会遇到一些读取xml文件的时候,下面是我学习的整理。

用XmlDocument读取加载

 XmlDocument doc = new XmlDocument();
  doc.Load("XML.xml");//xml的文件路径
 //获取到XML的根元素进行操作
XmlNodeList xn = doc.SelectNodes("countries/country");

 完整代码如下

前端:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="demo0427.aspx.cs" Inherits="WebApplication2.demo0427" %>






    xml加载到tree中


    

后端:

using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Xml;
using System.Xml.Linq;

namespace WebApplication2
{
    public partial class demo0427 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                string path3 = Server.MapPath("/");//获得当前的路径
                //将XML文件加载进来
                XmlDocument doc = new XmlDocument();
                doc.Load("" + path3 + "XML.xml");
                //获取到XML的根元素进行操作
                XmlNodeList xn = doc.SelectNodes("countries/country");
                foreach (XmlNode xn1 in xn)
                {   //获取第一个元素text的值
                    string text = xn1.FirstChild.InnerXml;
                    XmlNode v = xn1.SelectSingleNode("value");
                    string re = v.InnerText;
                    //获取属性值
                    string val = v.Attributes["id"].Value;
                    Console.WriteLine(text + ":" + val + ":" + re);
                    //第一级树
                    TreeNode trerotnod = new TreeNode();
                    //第二级树
                    TreeNode x = new TreeNode();
                    TreeNode y = new TreeNode();
                    trerotnod.Text = xn1.InnerText;
                    y.Text = val;
                    x.Text = re;
                    //把第二级的树添加到第一级的树中
                    trerotnod.ChildNodes.Add(x);
                    trerotnod.ChildNodes.Add(y);
                    TreeView1.Nodes.Add(trerotnod);

                }
            }
        }
    }
}

  

 

转载于:https://www.cnblogs.com/feipengting/p/8986062.html

你可能感兴趣的:(c#,ui,前端,ViewUI)