如何在网页上直接打开服务器上的word文件

时间:2022-10-01 06:18:23
如何在网页上直接打开服务器上的word文件,直接将word内容显示在浏览器中,不是调用本地office应用程序,

5 个解决方案

#1


用iweboffice active插件

#2


客户端安装ie的word插件,或者服务端将word内容读取出来显示在html里

#3


或者服务端将word内容读取出来显示在html里 这个比较好,有没有具体些的思路?

#4



<script language=javascript>
function saveword(){
var oWordApp=new ActiveXObject("Word.Application");
var oDocument=oWordApp.Documents.Open("http://**/x.doc");
oDocument.SaveAs("C:\\test.htm", 8)
oWordApp.Quit();
}
</script>
</HEAD>
<BODY>
Click the "save" button to save the file "C:\test.doc" to "C:\test.htm":
<input type=button onclick="saveword()" value=save>

</BODY>

#5


你就直接打开url不就得了嘛?

#1


用iweboffice active插件

#2


客户端安装ie的word插件,或者服务端将word内容读取出来显示在html里

#3


或者服务端将word内容读取出来显示在html里 这个比较好,有没有具体些的思路?

#4



<script language=javascript>
function saveword(){
var oWordApp=new ActiveXObject("Word.Application");
var oDocument=oWordApp.Documents.Open("http://**/x.doc");
oDocument.SaveAs("C:\\test.htm", 8)
oWordApp.Quit();
}
</script>
</HEAD>
<BODY>
Click the "save" button to save the file "C:\test.doc" to "C:\test.htm":
<input type=button onclick="saveword()" value=save>

</BODY>

#5


你就直接打开url不就得了嘛?