将xml 写到内存中再已string类型读出来

System.IO.MemoryStream ms = new System.IO.MemoryStream();
xmlDoc.Save(ms);
System.IO.StreamReader sr = new System.IO.StreamReader(ms, System.Text.Encoding.UTF8);
ms.Position = 0;
string xmlString = sr.ReadToEnd();

上一篇:2. HBase快速入门


下一篇:PTA 乙级 1001 害死人不偿命的(3n+1)猜想