摘要: 网上很多例子,都是用Jxl读或者写excel,本文实现的功能就是将数据源in.xls的第几行第几列数据写入到out.xls的第几行第几列,不覆盖out.xls其他原有的数据。需要导入的包:jxl.jarpublic void readTO() { Workbook wb = null; WritableWorkbook wwb = null; try { File is = new File(System.getProperty("user.dir") + "\\in.xls"); File os = new File(System.getPropert 阅读全文
posted @ 2014-03-21 10:18 K.c 阅读(430) 评论(0) 推荐(0)