public interface ExcelOperations
| 限定符和类型 | 字段和说明 |
|---|---|
static String |
EXCEL_NOT_PASS_FILTERED |
| 限定符和类型 | 方法和说明 |
|---|---|
Object |
readCell(org.apache.poi.ss.usermodel.Cell cell,
CellMapping cellMapping)
读取Cell
|
Object |
readExcel(org.apache.poi.ss.usermodel.Workbook workbook,
ExcelMapping excelMapping)
读取Excel
|
Object |
readRow(org.apache.poi.ss.usermodel.Row row,
SheetMapping sheetMapping)
读取Row
|
Object |
readSheet(org.apache.poi.ss.usermodel.Sheet sheet,
SheetMapping sheetMapping)
读取Sheet
|
void |
writeCell(org.apache.poi.ss.usermodel.Cell cell,
SheetMapping sheetMapping,
Object data)
写入Cell
|
void |
writeExcel(org.apache.poi.ss.usermodel.Workbook workbook,
ExcelMapping excelMapping)
写入Excel
|
void |
writeRow(org.apache.poi.ss.usermodel.Row row,
SheetMapping sheetMapping,
Map data)
写入Row
|
void |
writeSheet(org.apache.poi.ss.usermodel.Sheet sheet,
SheetMapping sheetMapping)
写入Sheet
|
Object readExcel(org.apache.poi.ss.usermodel.Workbook workbook, ExcelMapping excelMapping)
workbook - excelMapping - Object readSheet(org.apache.poi.ss.usermodel.Sheet sheet, SheetMapping sheetMapping)
sheet - sheetMapping - Object readRow(org.apache.poi.ss.usermodel.Row row, SheetMapping sheetMapping)
row - sheetMapping - Object readCell(org.apache.poi.ss.usermodel.Cell cell, CellMapping cellMapping)
cell - cellMapping - void writeExcel(org.apache.poi.ss.usermodel.Workbook workbook,
ExcelMapping excelMapping)
workbook - excelMapping - void writeSheet(org.apache.poi.ss.usermodel.Sheet sheet,
SheetMapping sheetMapping)
sheet - sheetMapping - void writeRow(org.apache.poi.ss.usermodel.Row row,
SheetMapping sheetMapping,
Map data)
row - sheetMapping - data - void writeCell(org.apache.poi.ss.usermodel.Cell cell,
SheetMapping sheetMapping,
Object data)
cell - sheetMapping - data - Copyright © 2017. All rights reserved.