内容导出成word

Posted 金琥

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了内容导出成word相关的知识,希望对你有一定的参考价值。

private void 导出word(string 内容)
{
    string tit = "<html xmlns:v=\"urn:schemas-microsoft-com:vml\"   xmlns:o=\"urn:schemas-microsoft-com:office:office\"   xmlns:w=\"urn:schemas-microsoft-com:office:word\"   xmlns:m=\"http://schemas.microsoft.com/office/2004/12/omml\"   xmlns=\"http://www.w3.org/TR/REC-html40\">";

    string path = string.Empty;
    System.Windows.Forms.SaveFileDialog fbd = new System.Windows.Forms.SaveFileDialog();
    fbd.Filter = "所有文件 (*.doc)|*.doc";
    if (fbd.ShowDialog() == System.Windows.Forms.DialogResult.OK)
    {
        path = fbd.FileName;
        byte[] myByte = System.Text.Encoding.UTF8.GetBytes(tit+内容);
        using (FileStream fsWrite = new FileStream(path, FileMode.Create))
        {
            fsWrite.Write(myByte, 0, myByte.Length);
        };

    }
}

 

以上是关于内容导出成word的主要内容,如果未能解决你的问题,请参考以下文章

asp.net web页面导出word

Java 用Freemarker完美导出word文档(带图片)

freemaker 导出word

Regexp_substr 将字符串解析成片段

富文本编辑器内容实现word导出下载,请各位大神们指点,感激不尽

怎么把网页的word文档导出来