protected void customerSheet(int i, int j, WritableSheet sheet)
throws RowsExceededException, WriteException {
}}
* 默认的一个excel数据写入器。用於處理簡單excel的數據導入。所謂簡單,是指表頭只有一行、整個excel都沒有合並單元格的情況
*
* @author 团长
* @since 2012-9-26
*/
public class DefaultExcelWriterServiceImpl implements ExcelWriteService {
/**
* 對當前sheet進行特殊處理的方法。由子類實現。<br />
* 2012年11月12日 項目程序執行統計表中有一個該方法的實現。
*
* @author 團長
* @since 2012-11-12
* @param i
* :行號
* @param j
* :列號
* @param sheet
* :待處理的sheet
* @throws RowsExceededException
* @throws WriteException
*/
protected void customerSheet(int i, int j, WritableSheet sheet)
throws RowsExceededException, WriteException {
}}