服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|

服务器之家 - 编程语言 - ASP.NET教程 - asp.net(c#)下读取word文档的方法小结

asp.net(c#)下读取word文档的方法小结

2019-09-17 13:23asp.net开发网 ASP.NET教程

asp.net(c#)下读取word文档的方法小结,需要的朋友可以参考下。

第一种方法: 

复制代码代码如下:


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(); 


第二种方法: 

#9333d4568815d272dd358da97327448c#代码如下:


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(); 

延伸 · 阅读

精彩推荐