摘要: 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 阅读全文
posted @ 2012-08-23 09:52 尹成亮 阅读(658) 评论(0) 推荐(0) 编辑