本文介绍了建立在C#中的文件名(.htm)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道创建一个使用C#一个简单的HTML文件的最好方法。

I would like to know the best way to create a simple html file using c#.

使用类似 System.IO它。 ?File.Create

推荐答案

喜欢的东西 -

using (FileStream fs = new FileStream("test.htm", FileMode.Create))
{
    using (StreamWriter w = new StreamWriter(fs, Encoding.UTF8))
    {
        w.WriteLine("<H1>Hello</H1>");
    }
}

这篇关于建立在C#中的文件名(.htm)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 13:33
查看更多