• 大小: 672KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-14
  • 语言: 其他
  • 标签: .net  

资源简介

用于.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


评论

共有 条评论