我正在开发一个简历存档,人们可以在其中上传他们的简历,并且该简历将保存在特定位置。最重要的是人们可以使用任何版本的 MS-word 来准备他们的简历,并且简历文件的扩展名可以是 doc 或 docx。所以我只想知道是否有任何可用的免费库可用于从 doc 或 docx 文件中提取文本数据,该库在所有 ms-word 版本的情况下都可以使用,如果 ms-word 未安装在 pc 中也可以使用。我搜索谷歌,发现一些文章从 doc 文件中提取文本数据,但我不确定它们是否适用于所有 ms-word 版本。所以请指导我应该使用哪个库来从 ms-word 中提取数据,而不管 ms-word 版本如何,也请给我一些关于这个问题的好文章链接。
还指导我是否有任何可用的查看器可用于显示我的 c# 应用程序中的 doc 文件内容,而与 ms-word 版本无关。谢谢
我得到了答案
**Need to add this reference Microsoft.Office.Interop.Word**
using System.Runtime.InteropServices.ComTypes;
using System.IO;
public static string GetText(string strfilename)
{
string strRetval = "";
System.Text.StringBuilder strBuilder = new System.Text.StringBuilder();
if (File.Exists(strfilename))
{
try
{
using (StreamReader sr = File.OpenText(strfilename))
{
string s = "";
while ((s = sr.ReadLine()) != null)
{
strBuilder.AppendLine(s);
}
}
}
catch (Exception ex)
{
SendErrorMail(ex);
}
finally
{
if (System.IO.File.Exists(strfilename))
System.IO.File.Delete(strfilename);
}
}
if (strBuilder.ToString().Trim() != "")
strRetval = strBuilder.ToString();
else
strRetval = "";
return strRetval;
}
public static string SaveAsText(string strfilename)
{
string fileName = "";
object miss = System.Reflection.Missing.Value;
Microsoft.Office.Interop.Word.Document doc = null;
try
{
Microsoft.Office.Interop.Word.Application wordApp = new Microsoft.Office.Interop.Word.Application();
fileName = Path.GetDirectoryName(strfilename) + @"\" + Path.GetFileNameWithoutExtension(strfilename) + ".txt";
doc = wordApp.Documents.Open(strfilename, false);
doc.SaveAs(fileName, Microsoft.Office.Interop.Word.WdSaveFormat.wdFormatDOSText);
}
catch (Exception ex)
{
SendErrorMail(ex);
}
finally
{
if (doc != null)
{
doc.Close(ref miss, ref miss, ref miss);
System.Runtime.InteropServices.Marshal.ReleaseComObject(doc);
doc = null;
}
GC.Collect();
GC.WaitForPendingFinalizers();
}
return fileName;
}