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