国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > C# > 正文

C#編程讀取文檔Doc、Docx及Pdf內容的方法

2020-01-24 01:52:13
字體:
來源:轉載
供稿:網友

本文實例講述了C#編程讀取文檔Doc、Docx及Pdf內容的方法。分享給大家供大家參考。具體分析如下:

Doc文檔:Microsoft Word 14.0 Object Library (GAC對象,調用前需要安裝word。安裝的word版本不同,COM的版本號也會不同)
Docx文檔:Microsoft Word 14.0 Object Library (GAC對象,調用前需要安裝word。安裝的word版本不同,COM的版本號也會不同)
Pdf文檔:PDFBox

/* 作者:GhostBear */using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;using System.Text.RegularExpressions;using org.pdfbox.pdmodel;using org.pdfbox.util;using Microsoft.Office.Interop.Word;namespace TestPdfReader{ class Program { static void Main(string[] args) {  //PDF  PDDocument doc = PDDocument.load(@"C:/resume.pdf");  PDFTextStripper pdfStripper = new PDFTextStripper();  string text = pdfStripper.getText(doc);  string result = text.Replace('/t', ' ').Replace('/n', ' ').Replace('/r', ' ').Replace(" ", "");  Console.WriteLine(result);  //Doc,Docx  object docPath = @"C:/resume.doc";  object docxPath = @"C:/resume.docx";  object missing=System.Reflection.Missing.Value;  object readOnly=true;  Application wordApp;  wordApp = new Application();  Document wordDoc = wordApp.Documents.Open(ref docPath,       ref missing,       ref readOnly,       ref missing,       ref missing,       ref missing,       ref missing,       ref missing,       ref missing,       ref missing,       ref missing,       ref missing,       ref missing,       ref missing,       ref missing,       ref missing);  string text2 = FilterString(wordDoc.Content.Text);  wordDoc.Close(ref missing, ref missing, ref missing);  wordApp.Quit(ref missing, ref missing, ref missing);  Console.WriteLine(text2);  Console.Read();   } private static string FilterString(string input) {  return Regex.Replace(input, @"(/a|/t|/n|/s+)", ""); } }}

希望本文所述對大家的C#程序設計有所幫助。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 临湘市| 吉隆县| 小金县| 鹤峰县| 当涂县| 迁安市| 嘉黎县| 汝阳县| 精河县| 海安县| 濮阳市| 罗江县| 永登县| 师宗县| 广元市| 巴东县| 扎兰屯市| 彭阳县| 革吉县| 鄱阳县| 龙里县| 璧山县| 鄂托克旗| 卓尼县| 常山县| 靖安县| 涞源县| 庄浪县| 浮山县| 苏州市| 鲁山县| 上杭县| 北海市| 邵阳县| 淮安市| 瓮安县| 晋城| 禄丰县| 高邮市| 双城市| 舒城县|