-
高本版Excel文件 XSSFWorkbook 一般使用HSSFWorkbook ,保持兼容性查看全部
-
sheet.getCell();获取单元格 cell.getContents();获取单元格内容 workbook.close;关闭;for循环遍历输出查看全部
-
workbook.getSheet(0);获取第一个sheet页查看全部
-
高本版Excel文件 XSSFWorkbook 一般使用HSSFWorkbook ,保持兼容性查看全部
-
HSSFWorkbook book = new HSSFWorkbook(); HSSFSheet sheet = book.createSheet(); String[] columns = {"id","名字","性別"}; HSSFRow headeRow = sheet.createRow(0); for (int i = 0; i < columns.length; i++) { HSSFCell cell = headeRow.createCell(i); cell.setCellValue(columns[i]); } for (int i = 1; i < 11; i++) { HSSFRow nextRow = sheet.createRow(i); HSSFCell cell2 = nextRow.createCell(0); cell2.setCellValue(i); cell2 = nextRow.createCell(1); cell2.setCellValue("name" + i); cell2 = nextRow.createCell(2); cell2.setCellValue("男"); } FileOutputStream outputStream; try { outputStream = new FileOutputStream(new File(fileName)); book.write(outputStream); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); }查看全部
-
1,创建Excel文件 new File("存放的地址"); file.createNewFile(); 2,创建工作薄 WritableWorkbook workBook=Workbook.createWorkbook(file); 3,创建Sheet WritableSheet sheet=workBook.createSheet("sheet的名称",0/*索引值*/); 4,创建表头单元格 String[] title={表头数组} Lable lable=null; //将表头添加到第一行 for(int i=0;i<title.length;i++){ lable=new lable(i,0,title[i]); sheet.addCell(label); } 5,循环添加数据,(注意数据下标) //写入数据 6,workbook.write; 7,workbook.close;查看全部
-
几个概念: 工作薄 excel 工作表 Sheet 行记录 row 单元格 cell查看全部
-
读写Excel三种常用技术 1.POI 2.JXL 3.FASTEXCEL查看全部
-
XSSFWorkbook create 高本版Excel查看全部
-
iText 生成 PDF查看全部
-
hssf office 2003 xssf office 2007查看全部
-
ceshi查看全部
-
作业2查看全部
-
作业1查看全部
-
课程总结查看全部
举报
0/150
提交
取消