java将html导出成word

来源:互联网 发布:淘宝网上哪家的箫好 编辑:程序博客网 时间:2024/06/10 04:55

 

java将html导出word不用忘记<html></html>这对标签 

//换页

<span lang=EN-US style='font-size:12.0pt;line-height:150%;font-family:"Times New Roman";
mso-fareast-font-family:宋体;mso-font-kerning:1.0pt;mso-ansi-language:EN-US;
mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA'><br clear=all  style='mso-special-character:page-break;page-break-before:always'>
</span>

 

//换行

<p class=MsoNormal style='line-height:150%'><span lang=EN-US style='font-size:12.0pt;line-height:150%'><o:p>&nbsp;</o:p></span></p>

 

查看的话 打开word 视图——页面 就能看出看出效果

 

 

         ArrayList records = form.getRecords();//获取数据库数据if(null!=records&&0!=records.size()){//html拼接出word内容String content="<html>";for (int i = 0; i < records.size(); i++) {Record record =(Record) records.get(i);//从数据库中获得数据,将oracle中的clob数据类型转换成string类型Method method = record.get("CONTENT").getClass().getMethod("getVendorObj",new Class[]{});CLOB clob = (CLOB)method.invoke(record.get("CONTENT"));String cx  = clob.getSubString((long) 1, (int) clob.length());String title= (String) record.get("TITLE");//html拼接出word内容content+="<div style=\"text-align: center\"><span style=\"font-size: 24px\"><span style=\"font-family: 黑体\">"+title+"<br /> <br /> </span></span></div>";content+="<div style=\"text-align: left\"><span >"+cx+"<br /> <br /> </span></span></div>";//插入分页符content+="<span lang=EN-US style='font-size:12.0pt;line-height:150%;mso-fareast-font-family:宋体;mso-font-kerning:1.0pt;mso-ansi-language:EN-US;mso-fareast-language:ZH-CN;mso-bidi-language:AR-SA'><br clear=all style='page-break-before:always'></span>";content+="<p class=MsoNormal style='line-height:150%'><span lang=EN-US style='font-size:12.0pt;line-height:150%'><o:p> </o:p></span></p>";} content += "</html>";byte b[] = content.getBytes();  ByteArrayInputStream bais = new ByteArrayInputStream(b);  POIFSFileSystem poifs = new POIFSFileSystem();  DirectoryEntry directory = poifs.getRoot();  DocumentEntry documentEntry = directory.createDocument("WordDocument", bais);  //输出文件String name="导出知识";response.reset();response.setHeader("Content-Disposition",                     "attachment;filename=" +                     new String( (name + ".doc").getBytes(),                                "iso-8859-1"));response.setContentType("application/msword");OutputStream ostream = response.getOutputStream(); //输出文件的话,new一个文件流//FileOutputStream ostream = new FileOutputStream(path+ fileName);  poifs.writeFilesystem(ostream);  ostream.flush();ostream.close(); bais.close(); 


 

0 3
原创粉丝点击