XML带格式的输出到RichTextBox或者TextBox中

时间:2021-12-17 00:55:34

如果只是简单的输出XML文档的内容到RichTextBox或者TextBox中。用XmlTextWriter就行了,但是XmlTextWriter只能输出到Console.Out或者文件中。

如果要带格式的把XML中的数据输出到RichTextBox或者TextBox中呢?这时候不仅要用到XmlTextWriter,还要用到StringWriter。

不解释,直接贴代码

            XmlDocument xmlDoc = new XmlDocument();//创建一个XML文档对象
            xmlDoc.Load("C:\\bookstore.xml");//加载XML文档
            StringWriter tw = new StringWriter();//定义一个StringWriter
            XmlTextWriter tw2 = new XmlTextWriter(tw);//创建一个StringWriter实例的XmlTextWriter
            tw2.Formatting = Formatting.Indented;//设置缩进
            tw2.Indentation = 1;//设置缩进字数
            tw2.IndentChar = '\t';//用\t字符作为缩进
            xmlDoc.WriteTo(tw2);
            //tw.Close();//关闭StringWriter
这样就达到效果了。