首页>代码>java Excel导入导出工具类icexls实例(导入导出各只需两行代码)>/icexls/src/main/java/com/icexls/AbstractExcelParser.java
package com.icexls;
public abstract class AbstractExcelParser {
private String excelFileName;
private String sheet;
private String numberType;
protected void setExcelFileName(String excelFileName) {
this.excelFileName = excelFileName;
}
protected void setSheet(String sheet) {
this.sheet = sheet;
}
public String getExcelFileName() {
return excelFileName;
}
public String getSheet() {
return sheet;
}
public void setNumberType(NumberType numberType) {
this.numberType = numberType + "";
}
public String getNumberType() {
return numberType;
}
}
最近下载更多
东风hank LV13
2024年9月22日
1358849392 LV21
2023年10月10日
rookie_58 LV2
2022年5月27日
jinandfei LV12
2021年12月8日
zhanghna799 LV3
2021年11月18日
sl0018 LV13
2021年8月27日
aaaahao LV13
2021年7月25日
liangxiang LV6
2020年10月15日
13188866605 LV12
2020年8月21日
wjh12345654321 LV14
2020年7月17日

最近浏览