|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjas.io.ExcelReader
public class ExcelReader
This class is a simple and a fast way to use the Andy Khan's excelread library.
Using ExcelReader you can read data from excel sequentially or specifing positions of
the cell to read.
Sequential reading allows you to use excel sheets like sequential text files.
Each value is read using the getValue() method without passing to it any parameters.
The ExcelReader class gets values one by one until the eof() method returns true.
When you know the structure of your data or you are using a table as input,
the direct reading method can be used. You get values asking ExcelRead to return
the value of each cell giving its (row, col) position.
The row and column index start both from 0 value.
Title: JAS
Description: Java Agent-based Simulation library
Copyright (C) 2002 Michele Sonnessa
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
Constructor Summary | |
---|---|
ExcelReader(java.lang.String fileName)
Opens the file and sets the first excel sheet the current sheet. |
|
ExcelReader(java.lang.String fileName,
boolean skipEmptyCells)
Opens the file and sets the first excel sheet the current sheet. |
|
ExcelReader(java.lang.String fileName,
boolean skipEmptyCells,
java.lang.String sheetName)
This constuctor allows you to open and to select directly the source sheet. |
Method Summary | |
---|---|
boolean |
checkForLabelCell()
Checks if the next cell in reading sequence contains a label (leaving unchanged the counter) |
boolean |
checkForLabelCell(int atRow,
int atCol)
Checks if the cell at (atRow, atCol) position contains a label (leaving unchanged the counter) |
boolean |
eof()
Tests if reading head reached the end of file (the last element in sequence). |
boolean |
eol()
Tests if reading head reached the end of line. |
boolean |
existsSheetWithName(java.lang.String sheetName)
Tests if the 'sheetName' sheet is present in the current Excel document. |
jxl.Sheet |
getCurrentSheet()
Returns the current sheet reference. |
double |
getDblValue()
Gets the next value in reading sequence and returns it as a double value. |
double |
getDblValue(int atRow,
int atCol)
Gets the value at (atRow, atCol) position and returns it as a double value. |
int |
getIntValue()
Gets the next value in reading sequence and returns it as an int value. |
int |
getIntValue(int atRow,
int atCol)
Gets the value at (atRow, atCol) position and returns it as an int value. |
java.lang.String |
getStrValue()
Gets the next value in reading sequence and returns it as a String value. |
java.lang.String |
getStrValue(int atRow,
int atCol)
Gets the value at (atRow, atCol) position and returns it as a String value. |
void |
selectSheet(java.lang.String sheetName)
Changes the current sheet to the 'sheetName'. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ExcelReader(java.lang.String fileName)
public ExcelReader(java.lang.String fileName, boolean skipEmptyCells)
public ExcelReader(java.lang.String fileName, boolean skipEmptyCells, java.lang.String sheetName)
Method Detail |
---|
public boolean checkForLabelCell()
public boolean checkForLabelCell(int atRow, int atCol)
public boolean eof()
public boolean eol()
public boolean existsSheetWithName(java.lang.String sheetName)
public jxl.Sheet getCurrentSheet()
public double getDblValue()
public double getDblValue(int atRow, int atCol)
public int getIntValue()
public int getIntValue(int atRow, int atCol)
public java.lang.String getStrValue()
public java.lang.String getStrValue(int atRow, int atCol)
public void selectSheet(java.lang.String sheetName)
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |