You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package com.alibaba.excel.read.builder; |
|
|
|
import com.alibaba.excel.metadata.Workbook; |
|
|
|
/** |
|
* Build ExcelWriter |
|
* |
|
* @author zhuangjiaju |
|
*/ |
|
public class ExcelReaderBuilder { |
|
/** |
|
* Workbook |
|
*/ |
|
private Workbook workbook; |
|
|
|
public ExcelReaderBuilder() { |
|
this.workbook = new Workbook(); |
|
} |
|
|
|
|
|
}
|
|
|