com.scudata.excel.SheetObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esproc Show documentation
Show all versions of esproc Show documentation
SPL(Structured Process Language) A programming language specially for structured data computing.
package com.scudata.excel;
/**
* Sheet object
*
*/
public abstract class SheetObject {
/**
* Whether the file in xlsx format
*/
protected boolean isXls;
/**
* SheetInfo object
*/
public SheetInfo sheetInfo;
/**
* Import the excel sheet and return the sequence object.
*
* @param fields
* Field names
* @param startRow
* Start row
* @param endRow
* End row
* @param bTitle
* Include title line
* @param isCursor
* Whether to return the cursor
* @param removeBlank
* Whether to delete blank lines at the beginning and end
* @return
* @throws Exception
*/
public abstract Object xlsimport(String[] fields, int startRow, int endRow,
boolean bTitle, boolean isCursor, boolean removeBlank)
throws Exception;
/**
* Close
*/
public abstract void close();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy