服务器之家

服务器之家 > 正文

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

时间:2019-09-17 13:23     来源/作者:asp.net开发网

第一种方法: 

复制代码代码如下:


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

标签:

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字 2019-06-05
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-07-24
超A是什么意思 你好a表达的是什么
超A是什么意思 你好a表达的是什么 2019-06-06
返回顶部