如何在瀏覽器網頁中顯示word文件內容

如何在瀏覽器網頁中顯示word文件內容  

 

把word文件讀到byte[]中,再Response.OutputStream.Write(bytes)到客戶端去 php

Page_Load事件中寫:        html

  //FileStream   fs   =   new   FileStream("c:\\1.doc",   FileMode.Open,   FileAccess.Read);  FileStream fs = new FileStream(Server.MapPath("files\\1.doc"),FileMode.Open,   FileAccess.Read);      web

  byte[]   bytes   =   new   byte[(int)fs.Length];  瀏覽器

  fs.Read(bytes,   0,   bytes.Length);  app

  fs.Close();  ide

  Response.ContentType   =   "application/msword";  ui

  //Response.OutputStream(bytes);   spa

Response.OutputStream.Write(bytes,0, bytes.Length);excel

  Response.End();orm

 

在網頁中顯示.txt文件的內容:

直接就能夠顯示,若是想放到表格中,能夠<iframe   src="XXX.txt"></iframe>

word文件也能夠照此。

 

爲了正確處理word等格式,你須要在HTML文件中設置好該文件類型,好比:

<meta http-equiv="Content-Type" content="Application/msword">

還有其它常常設置的文件類型:

Application/msword Microsoft Word Document

application/pdf PDF Document

application/wordperfect6.0 WordPerfect 6.0 Document

application/zip ZIP archive

audio/x-wav WAV audio format

audio/midi MIDI audio format

audio/x-pn-realaudio RealAudio

image/gif GIF image format

image/jpeg JPEG image format

image/png PNG image format

text/html HTML document

text/plain Plain text

video/mpeg MPEG video format

video/quicktime QuickTime video format

video/x-msvideo AVI video format

文章來源於易賢網http://www.ynpxrz.com/n765461c2023.aspx

還有一種,作參考

response.setContentType("application/vnd.ms-excel"); 
File file =new File("D:/test.xls"); 
FileInputStream in=new FileInputStream(file); 
byte[] buffer=new byte[in.available()]; 
in.read(buffer); 
response.getOutputStream().write(buffer); response.getOutputStream().flush();