org.apache.jmeter.functions
Class FileRowColContainer
java.lang.Object
org.apache.jmeter.functions.FileRowColContainer
- public class FileRowColContainer
- extends Object
File data container for CSV (and similar delimited) files
Data is accessible via row and column number
- Version:
- $Revision: 1.5.2.1 $
Method Summary |
String |
getColumn(int row,
int col)
Get the string for the column from the current row |
String |
getFileName()
|
int |
nextRow()
Returns the next row to the caller, and updates it,
allowing for wrap round |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DELIMITER
public static final String DELIMITER
- See Also:
- Constant Field Values
FileRowColContainer
public FileRowColContainer(String file,
String delim)
throws IOException,
FileNotFoundException
FileRowColContainer
public FileRowColContainer(String file)
throws IOException,
FileNotFoundException
getColumn
public String getColumn(int row,
int col)
throws IndexOutOfBoundsException
- Get the string for the column from the current row
- Parameters:
row
- row number (from 0)col
- column number (from 0)
- Returns:
- the string (empty if out of bounds)
- Throws:
IndexOutOfBoundsException
- if the column number is out of bounds
nextRow
public int nextRow()
- Returns the next row to the caller, and updates it,
allowing for wrap round
- Returns:
- the first free (unread) row
getFileName
public String getFileName()
- Returns:
- the file name for this class
Copyright © 1998-2005 Apache Software Foundation. All Rights Reserved.