-
读写各种文件查看全部
-
ctrl+shift+O 引入查看全部
-
设置单元格类型为数据类型查看全部
-
添加字体样式查看全部
-
设值单元格格式查看全部
-
合并单元格查看全部
-
设值列宽查看全部
-
获取sheet页的两种方式查看全部
-
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(); }查看全部
-
下载PDF查看全部
-
PDF查看全部
-
今天看到这里查看全部
-
FastExcel查看全部
-
POI和JXL 的对比。查看全部
-
iText-可以生成PDF或rtf,还可以将XML,HTML转化为PDF XSSF-读写OOXML HWPF-读写Word HSLF-读写PowerPoint查看全部
举报
0/150
提交
取消