标签: c#-4.0
html内容来自xml文件中的服务器。我已经从xml分离了html内容,现在我想将这些内容保存到html文件中。请帮我解决这个问题。
答案 0 :(得分:0)
在C#中只需要一行:System.IO.File.WriteAllText( System.Environment.SpecialFolder.CommonDocuments + "myhtmlfile.html", "<html>...</html>", System.Text.Encoding.UTF8 );
System.IO.File.WriteAllText( System.Environment.SpecialFolder.CommonDocuments + "myhtmlfile.html", "<html>...</html>", System.Text.Encoding.UTF8 );