如何在c#中将base64字符串转换为doc / docx?

时间:2016-05-28 06:51:34

标签: c# memorystream

我正在开发基于mvc web的项目,并希望使用 c# base64字符串转换为 doc / docx 文件。我关于将base64转换为图像文件但没有doc / docx文件的想法,已经搜索了很多但没有得到任何解决方案。有人对此有所了解......? 提前谢谢..

1 个答案:

答案 0 :(得分:1)

您只需创建rtf文件

即可

为您的项目添加system.windows.forms引用

RichTextBox rtb = new RichTextBox();
rtb.Text = "Base64String";
rtb.Save("Path");

关于创建 docx 文件

使用此open source project创建 docx 文件,如下所示

  var doc = DocX.Create("FileName");
  // Insert a paragrpah:
  doc.InsertParagraph("Base64String");
  // Save to the output directory:
 doc.Save();

更多信息:

How do I create the .docx document with Microsoft.Office.Interop.Word?

Create and Manipulate Word Documents