jsp页面导出成word文件

[html]  view plain copy
  1. <%@ page contentType="application/vnd.ms-word; charset=utf-8"%>  
  2. <%@ page pageEncoding="utf-8"%>  
  3. <%@ page import="java.net.URLEncoder" %>  
  4.   
  5. <%  
  6.     String fileName = "文件名.doc";  
  7.          //对中文文件名编码  
  8.     fileName = URLEncoder.encode("文件名", "UTF-8") + ".doc";  
  9.     response.setHeader("Content-disposition", "attachment; filename=" + fileName);  
  10. %>  
  11.   
  12. <html xmlns:v="urn:schemas-microsoft-com:vml"   
  13.       xmlns:o="urn:schemas-microsoft-com:office:office"   
  14.       xmlns:w="urn:schemas-microsoft-com:office:word"   
  15.       xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"   
  16.       xmlns:st1="urn:schemas-microsoft-com:office:smarttags"   
  17.       xmlns="http://www.w3.org/TR/REC-html40">  
  18. <head>  
  19. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">  
  20. <meta name="ProgId" content="Word.Document">  
  21. <meta name="Generator" content="Microsoft Word 12">  
  22. <meta name="Originator" content="Microsoft Word 12">   
  23. <title>JSP页面导出为Word文档</title>  
  24. </head>  
  25. <body>  
  26. 。。。页面内容。。。  
  27. </body>  
  28. </html>  

这种方式是可以导出,这是种简单的方式,但是文件名会出现乱码问题

fileName = new String(fileName.getBytes("GBK"), "ISO8859_1")+ ".doc";

就没事了。。。。。

你可能感兴趣的:(JavaScript)