15

我已经编写了代码来解析我的 xml 文件,XmlReader所以我不想重写它。我现在已经为程序添加了加密。我有 encrypt() 和 decrypt() 函数,它们采用 xml 文档和加密算法。我有一个使用 xml 阅读器来解析文件的函数,但现在有了 xml 文档,我不确定如何创建 xmlreader。

问题是如何将我的 xml 文档保存到流中。我敢肯定这很简单,但我对流一无所知。

XmlDocument doc = new XmlDocument();
        doc.PreserveWhitespace = true;
        doc.Load(filep);
        Decrypt(doc, key);

        Stream tempStream = null;
        doc.Save(tempStream);   //  <--- the problem is here I think

        using (XmlReader reader = XmlReader.Create(tempStream))  
        {
            while (reader.Read())
            { parsing code....... } }
4

4 回答 4

46

你可以试试MemoryStream上课

XmlDocument xmlDoc = new XmlDocument( ); 
MemoryStream xmlStream = new MemoryStream( );
xmlDoc.Save( xmlStream );

xmlStream.Flush();//Adjust this if you want read your data 
xmlStream.Position = 0;

//Define here your reading
于 2012-10-01T15:40:58.573 回答
1

写入文件:

 static void Main(string[] args)
    {
        XmlDocument doc = new XmlDocument();
        doc.LoadXml("<FTPSessionOptionInfo><HostName>ftp.badboymedia.ca</HostName></FTPSessionOptionInfo>");

        using (StreamWriter fs = new StreamWriter("test.xml"))
        {
            fs.Write(doc.InnerXml);
        }
    }
于 2012-10-01T15:43:44.873 回答
1

我意识到这是一个老问题,但认为值得从这个不错的小博客文章中添加一个方法。这排除了一些性能较差的方法。

private static XDocument DocumentToXDocumentReader(XmlDocument doc)
{
    return XDocument.Load(new XmlNodeReader(doc));
}
于 2016-09-09T15:16:08.530 回答
0

尝试这个

    XmlDocument document= new XmlDocument( );
    string pathTmp = "d:\somepath";
    using( FileStream fs = new FileStream( pathTmp, FileMode.CreateNew ))
    {
      document.Save(pathTmp);
      fs.Flush();
    }
于 2015-08-31T09:15:30.333 回答