问题描述
如题,求高手帮忙看看,我现在做到能在Excel中导出指定的内容,代码如下:HSSFWorkbookwb=newHSSFWorkbook();HSSFSheetsheet=wb.createSheet("test");FileOutputStreamfileOut;HSSFRowrow=sheet.createRow((short)0);row.createCell((short)1).setCellValue("aa");row.createCell((short)3).setCellValue("bb");row.createCell((short)5).setCellValue("CC");try{//制定导出的路径fileOut=newFileOutputStream("E:/book.xls");wb.write(fileOut);fileOut.close();}catch(FileNotFoundExceptione){System.out.println("文件没有找到!");e.printStackTrace();}catch(IOExceptione){System.out.println("IO异常!");e.printStackTrace();}请问,POI插件支不支持模板导出,如果支持该怎么实现,谢谢!
解决方案
解决方案二:
http://blog.csdn.net/myyate/archive/2008/01/17/2049860.aspx
解决方案三:
这位大哥,你那代码我看的是一头雾水啊。。。。。。
解决方案四:
当然支持啦!!网上都有很多这poi方面代码。。。我刚做完导入excel。。祝你成功
解决方案五:
额,导入不是问题,解析很简单。导出就让我纠结了,而且模板很复杂。不是传统普遍用的那种。。。。。。。蛋疼中。。
解决方案六:
http://hi.baidu.com/tang5324110/blog/item/1de04aa9b32276bdca130ce8.html
解决方案七:
该回复于2010-12-14 17:51:10被版主删除