将页面以word文档的格式输出很简单,在JSP中只需要简单两句就行了,示例如下:
<%@ page contentType="text/html;charset=GB2312"%>
<html>
<head><title>在JSP中输出Word文件</title></head>
<body>
<p>将页面内容输出为Word文档示例,点击ok按钮即出现提示是否保存选项。
<p>你想将页面保存为Word文档吗?
<form action="" method="get">
<input type="submit" value="ok" name="submit">
</form>
<%
String str=request.getParameter("submit");//获取按钮的值
if(str.equals("ok"))
response.setContentType("application/msword;charset=GB2312");//设置以msword格式输出
%>
</body>
</html>