把本页内容导出成word文件或excel文件(原创)

王朝other·作者佚名  2008-05-31
窄屏简体版  字體: |||超大  

说明:文件unload.js在js目录下,文件unload_Excel.jsp和unload_Word.jsp在unload目录下。

1,unload.js

/**************************************************

作者:云凤生(hainanyun@hotmail.com)

创建日期:2005-1-21

最后修改日期:2005-3-30

Function:

1,unload_word():unload local page as word file

2,unload_excel():unload local page as excel file

3,...(waiting for your additional work)

For example:

1,in the head of Html file,include this file:

<script src="js/unload.js" type="text/javascript"></script>

2,add unload button:

<input type="button" value="导出为Word文档" name="download" onclick="unload_word(location.href)" >

<input type="button" value="导出为Excel文档" name="download" onclick="unload_excel(location.href)" >

**************************************************/

function unload_word()

{

var url=location.href;

location.href='unload/unload_word.jsp?url='+url;

}

function unload_excel()

{

var url=location.href;

location.href='unload/unload_excel.jsp?url='+url;

}

2,unload_excel.jsp

<%

response.setHeader("Content-disposition","attachment; filename=print_tmp.xls");

%>

<%@ page contentType="application/vnd.ms-excel; charset=gb2312"%>

<%@ page import="Java.net.URL"%>

<meta http-equiv="Content-Language" content="zh-cn">

<meta name="GENERATOR" content="Microsoft FrontPage 5.0">

<meta name="ProgId" content="FrontPage.Editor.Document">

<%

String url_target = new String(request.getParameter("url"));

String filename = new String();

URL url = new URL(url_target);

filename = url.getFile();

%>

<jsp:include page="<%=filename%>" />

3,unload_word.jsp

<%

response.setHeader("Content-disposition","attachment; filename=print_tmp.doc");

%>

<%@ page contentType="application/vnd.ms-word; charset=gb2312"%>

<%@ page import="java.net.URL"%>

<meta http-equiv="Content-Language" content="zh-cn">

<meta name="GENERATOR" content="Microsoft FrontPage 5.0">

<meta name="ProgId" content="FrontPage.Editor.Document">

<%

String url_target = new String(request.getParameter("url"));

String filename = new String();

URL url = new URL(url_target);

filename = url.getFile();

%>

<jsp:include page="<%=filename%>" />

进入讨论组讨论。

(出处:http://www.knowsky.com)

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航