浏览 5159 次
锁定老帖子 主题:java修改excel模板文件
该帖已经被评为新手帖
|
|
---|---|
作者 | 正文 |
发表时间:2008-03-03
try { POIFSFileSystem fs =new POIFSFileSystem(new FileInputStream("c:\\template.xls")); HSSFWorkbook wb = new HSSFWorkbook(fs); HSSFSheet sheet = wb.getSheetAt(0); HSSFRow row = sheet.getRow(2); HSSFCell cell = row.getCell((short)2); if (cell == null) cell = row.createCell((short)2); cell.setCellType(HSSFCell.CELL_TYPE_STRING); cell.setCellValue("testtest"); // 输出文件 FileOutputStream fileOut = new FileOutputStream("c:\\test.xls"); wb.write(fileOut); fileOut.close(); }catch(Exception e) { e.printStackTrace(); }
声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2008-03-03
POI比jxl功能更强大吗?有什么区别没有?
|
|
返回顶楼 | |
发表时间:2008-03-03
这种例子貌似网上很多!
|
|
返回顶楼 | |
发表时间:2008-03-04
第一次使用POI,jxl没有用过,不知道两者的区别
|
|
返回顶楼 | |