public abstract class AbstractXlsDataSource extends JRAbstractTextDataSource implements JRRewindableDataSource
The default naming convention is to name report fields COLUMN_x and map each column with the field found at index x in each row (these indices start with 0). To avoid this situation, users can either specify a collection of column names or set a flag to read the column names from the first row of the XLSX or XLS file.
| Modifier and Type | Field and Description |
|---|---|
protected Map<String,Integer> |
columnNames |
protected DateFormat |
dateFormat |
protected NumberFormat |
numberFormat |
protected String |
sheetSelection |
protected boolean |
useFirstRowAsHeader |
| Constructor and Description |
|---|
AbstractXlsDataSource() |
| Modifier and Type | Method and Description |
|---|---|
protected abstract void |
checkReadStarted() |
abstract void |
close()
Closes the reader.
|
Map<String,Integer> |
getColumnNames() |
DateFormat |
getDateFormat()
Gets the date format that will be used to parse date fields.
|
NumberFormat |
getNumberFormat()
Gets the number format that will be used to parse numeric fields.
|
String |
getSheetSelection() |
void |
setColumnIndexes(Integer[] columnIndexes)
Specifies an array of integers representing the column indexes in the sheet.
|
void |
setColumnNames(String[] columnNames)
Specifies an array of strings representing column names matching field names in the report template.
|
void |
setColumnNames(String[] columnNames,
int[] columnIndexes)
Specifies an array of strings representing column names matching field names in the report template
and an array of integers representing the column indexes in the sheet.
|
void |
setDateFormat(DateFormat dateFormat)
Sets the desired date format to be used for parsing date fields.
|
void |
setNumberFormat(NumberFormat numberFormat)
Sets the desired number format to be used for parsing numeric fields.
|
void |
setSheetSelection(String sheetSelection) |
void |
setUseFirstRowAsHeader(boolean useFirstRowAsHeader)
Specifies whether the first row of the XLS file should be considered a table
header, containing column names matching field names in the report template.
|
convertNumber, convertStringValue, getConvertBean, getDatePattern, getFormattedDate, getFormattedNumber, getLocale, getNumberPattern, getTimeZone, setDatePattern, setLocale, setLocale, setNumberPattern, setTextAttributes, setTimeZone, setTimeZoneclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitmoveFirstgetFieldValue, nextprotected String sheetSelection
protected DateFormat dateFormat
protected NumberFormat numberFormat
protected boolean useFirstRowAsHeader
public DateFormat getDateFormat()
public void setDateFormat(DateFormat dateFormat)
public NumberFormat getNumberFormat()
public void setNumberFormat(NumberFormat numberFormat)
public void setColumnNames(String[] columnNames)
public void setColumnNames(String[] columnNames, int[] columnIndexes)
public void setColumnIndexes(Integer[] columnIndexes)
public void setUseFirstRowAsHeader(boolean useFirstRowAsHeader)
public abstract void close()
protected abstract void checkReadStarted()
public String getSheetSelection()
public void setSheetSelection(String sheetSelection)
Copyright © 2014. All rights reserved.