资源简介
用于.net 读取word的内容,和excel 的内容,简单的可继续开发。
代码片段和文件信息
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.xml.Linq;
using Word;
public partial class _Default : System.Web.UI.Page
{
public string yyyz = ““;
protected void Page_Load(object sender EventArgs e)
{
string tif = “赤峰市室内装饰施工.doc“;
//Server.MapPath(“touxiang/“ + Noval1 + “/“ + tif
yyyz = Doc2Text(Server.MapPath(“js/“ + tif));
}
public string Doc2Text(string docFileName)
{
//实例化COM
ApplicationClass wordApp = new ApplicationClass();
object fileobj = docFileName;
object nullobj = System.Reflection.Missing.Value;
//打开指定文件(不同版本的COM参数个数有差异,一般而言除第一个外都用nullobj就行了)
Document doc = wordApp.Documents.Open(ref fileobj ref nullobj ref nullobj
ref nullobj ref nullobj ref nullobj
ref nullobj ref nullobj ref nullobj
ref nullobj ref nullobj ref nullobj ref nullobj ref nullobj ref nullobj ref nullobj
);
//取得doc文件中的文本
string outText = doc.Content.Text;
//关闭文件
doc.Close(ref nullobj ref nullobj ref nullobj);
//关闭COM
wordApp.Quit(ref nullobj ref nullobj ref nullobj);
//返回
return outText;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 946176 1999-03-20 05:00 net读取表格word\bin\Interop.Excel.dll
文件 155648 1999-08-24 06:11 net读取表格word\bin\Interop.Office.dll
文件 57344 2003-07-03 14:31 net读取表格word\bin\Interop.VBIDE.dll
文件 655360 2003-07-14 22:51 net读取表格word\bin\Interop.Word.dll
文件 516096 2009-01-14 12:06 net读取表格word\bin\IrisSkin2.dll
文件 452 2013-11-24 13:52 net读取表格word\Default.aspx
文件 1640 2013-11-24 14:32 net读取表格word\Default.aspx.cs
文件 946176 1999-03-20 05:00 net读取表格word\Interop.Excel.dll
文件 655360 2003-07-14 22:51 net读取表格word\Interop.Word.dll
目录 0 2013-11-24 14:28 net读取表格word\bin
目录 0 2013-11-24 14:39 net读取表格word
----------- --------- ---------- ----- ----
3934252 11
- 上一篇:10kV配电网故障检测方法研究
- 下一篇:基于TCP的聊天室包含客户端与服务器端
相关资源
- 提交信息生成个人简历
- S7.Net.dll
- 传智播客.Net教学课件完整版
- AutoCAD.NET开发教程
- zxing.net 0.14.0.0
-
xm
l操作DLL - 中控考勤机签到程序
- 基于.net的网络爬虫
-
基于xm
l的留言本 - jboss-3.2.1_tomcat-4.1.24.zip
- 基于.NET的酒店管理系统
- InTheHand.Net.Personal.dll .Net 4.0版本
-
完美的.NET fr
amework卸载工具支持卸载 - .net简体繁体转换
- 计算机图形学源码DDA直线、中点直线
- windows server 2008 部署MVC5程序的方法
- 专门卸载软件的工具
- addFlowFor.net 画流程图的
- 城市公交线路添加查询
- PCommLite.NET2.0
- Spreadsheet3.5for .NET 4.0破解版
- 传智播客面试宝典.NET
- .net 后台Post,get方式调用webapi
- .Net环境下各种绘图方式的运行效率测
- Isight集成UG和Ansys(包含ugupdata元代表
-
xm
l增删改查 不用数据库,直接用 - newtonsoft.json源码
- O2S.Components.PDFRender4NET.dll 4.5.1无水印
- 航空管理系统
- 从数据库中加载树和动态添加树的节
评论
共有 条评论