摘要:
using System.IO;using Word = Microsoft.Office.Interop.Word;public static string getWordFulltext(string WordFilePath, string docId) { string docText = ""; try { if (File.Exists(WordFilePath) && docId != "" && WordFilePath.EndsWith(".doc")) { Word.Applicat 阅读全文