asp.net(c#)下读取word文档的方法小结_asp.net教程-查字典教程网
asp.net(c#)下读取word文档的方法小结
asp.net(c#)下读取word文档的方法小结
发布时间:2016-12-29 来源:查字典编辑
摘要:第一种方法:复制代码代码如下:Response.ClearContent();Response.ClearHeaders();Respons...

第一种方法:

复制代码 代码如下:

Response.ClearContent();

Response.ClearHeaders();

Response.ContentType = "Application/msword";

string s=Server.MapPath("C#语言参考.doc");

Response.WriteFile("C#语言参考.doc");

Response.Write(s);

Response.Flush();

Response.Close();

第二种方法:

复制代码 代码如下:

Response.ClearContent();

Response.ClearHeaders();

Response.ContentType = "Application/msword";

string strFilePath="";

strFilePath =Server.MapPath("C#语言参考.doc");

FileStream fs = new FileStream(strFilePath,FileMode.OpenOrCreate,FileAccess.Read);

Response.WriteFile(strFilePath,0,fs.Length);

fs.Close();

第三种方法:

复制代码 代码如下:

string path=Server.MapPath("C#语言参考.doc");

FileInfo file=new FileInfo(path);

FileStream myfileStream=new FileStream(path,FileMode.Open,FileAccess.Read);

byte[] filedata=new Byte[file.Length];

myfileStream.Read(filedata,0,(int)(file.Length));

myfileStream.Close();

Response.Clear();

Response.ContentType="application/msword";

Response.AddHeader("Content-Disposition","attachment;filename=文件名.doc");

Response.Flush();

Response.BinaryWrite(filedata);

Response.End();

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新asp.net教程学习
    热门asp.net教程学习
    编程开发子分类