我正在尝试在 VB.NET 下打开一个 doc 文件,我发现了一种非常简单的方法来使用 word 来完成它:
例如:
Dim doc As Word.Document
Dim wordApp As New Word.Application
Dim allText As String
Try
doc = wordApp.Documents.Open("C:\marti.doc")
allText = doc.Range.Text()
doc.Close()
RichTextBox1.Text = allText
Catch
'error
End Try
(更详细的信息: http: //support.microsoft.com/kb/316383)
这可以工作,但它需要打开 Microsoft Word 窗口来处理它。我需要在没有安装 Word 的情况下使用它。所以我需要一个可以打开 doc/excel 文件的库。
你知道可以做到这一点的好图书馆吗?
我找到了这个库: http ://bytescout.com/download/trial/documentsdk.html
你试过这个吗?