用C#来操作Word最方像便的方法是引入Word的API类库:
using Microsoft.Office.Interop.Word;
引入后就可以对Word进行操作了:
Code
//启动Word程序
Microsoft.Office.Interop.Word.Application myWordApp = new Microsoft.Office.Interop.Word.ApplicationClass();
object oMissing = System.Reflection.Missing.Value;
object filePath = ""; //这里是Word文件的路径
//打开文件
Document myWordDoc = myWordApp.Documents.Open(
ref filePath, ref oMissing, ref oMissing, ref oMissing,
ref oMissing, ref oMissing, ref oMissing, ref oMissing,
ref oMissing, ref oMissing, ref oMissing, ref oMissing,
ref oMissing, ref oMissing, ref oMissing, ref oMissing);
//下面是取得打开文件的页数
int pages = myWordDoc.ComputeStatistics(WdStatistic.wdStatisticPages, ref Nothing);
//关闭文件
myWordDoc.Close(ref oMissing, ref oMissing, ref oMissing);
//退出Word程序
myWordApp.Quit(ref Nothing, ref Nothing, ref Nothing);
关于Word的操作还有很多, 今天我做项目时为了取得总页数, 在网上找了很久都找不到, 后来自己慢慢试出来了.
留下个记号方便以后用, 也方便其他需要的朋友.