如何将byte[]转换为interop对象的Word(转换为Word文档)



我想在数据库中保存一个word文档,我是这样做的:

  FileStream st = new FileStream(filePath, FileMode.Open);
  byte[] buffer = new byte[st.Length];
  st.Read(buffer, 0, (int)st.Length);
  st.Close();
  //save Buffer into DB
  //myentityobject.FileContent = buffer;
  //save it

但当我想阅读它时,我不知道如何从DB获得的流中制作一个word文档。我尝试了这样的东西:

 var doc = myentityobject.FileContent;
 MemoryStream stream = new MemoryStream(doc as byte[]);
 letterPatternDoc = new Document(stream);
 filePath = @"D:LetterPatternDocument001.doc";
 object oMissing = System.Reflection.Missing.Value;
 currentApp = new wd.Application();
 currentApp.Visible = true;
 currentDoc = currentApp.Documents.Add(Type.Missing, Type.Missing);
 currentDoc = doc;
 currentDoc.SaveAs(ref path, oMissing, oMissing, oMissing, oMissing, oMissing, false
               , oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing,      oMissing, oMissing);

但它不起作用。

编辑:

我修改了代码,现在就可以工作了,我按文件流保存文件,然后阅读它。但我不知道这是一个好的解决方案吗?

FileStream fileSream = new FileStream(filePath, FileMode.Create, FileAccess.ReadWrite);
        BinaryWriter bw = new BinaryWriter(fileSream);
        bw.Write(FileContent);//filecontent is a byte[]
        fileSream.Close();
       // WordDoc.OpenDocument(filePath);

你能试试这个方法吗将文件保存到某个位置,并将文件路径保存到数据库。当您想读取此文件时,可以从数据库中获取文件路径。希望它能帮助您:)

尝试序列化文档对象,从而保留文档的状态并将其保存在db中。在读取反序列化时,文档对象将再次可供您显示。

word无法打开流,但您可以保存、修改它,然后在数据库中更新后,只需删除这个"临时"文件

如果不想使用FileStream,还可以利用System.IO.File命名空间中内置的WriteAllBytes静态方法。

下面是一个简单的例子(假设安装并引用了Interop.Word):

// byte[] fileBytes = getFileBytesFromDB();
var tmpFile = Path.GetTempFileName();
File.WriteAllBytes(tmpFile, fileBytes);
Application app = new word.Application();
Document doc = app.Documents.Open(filePath);
// do your stuff    
// convert the DOCX file back to a Byte Array
doc.Close();
app.Quit(); // VERY IMPORTANT: do this to close the MS Word instance
byte[] newFileBytes= File.ReadAllBytes(tmpFile);
File.Delete(tmpFile);

有关这个主题的更多信息,你也可以在我的博客上阅读这篇文章。

相关内容

  • 没有找到相关文章

最新更新