4

我想在数据库中保存一个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);
4

4 回答 4

0

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

于 2012-07-12T06:06:23.563 回答
0

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

于 2012-07-12T05:29:21.183 回答
0

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

于 2012-07-12T09:08:28.703 回答
0

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

这是一个简短的示例(假设已安装并引用了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);

有关此主题的更多信息,您还可以阅读我博客上的这篇文章。

于 2017-04-27T17:16:27.993 回答