public class CSVUtility
extends java.lang.Object
Constructor and Description |
---|
CSVUtility() |
Modifier and Type | Method and Description |
---|---|
static java.util.Map<java.lang.String,java.lang.String> |
readConfigurationCSV(java.io.File f)
This function reads the file given in parameter and treats it as a CSV
file (with ';' as separator !)
|
static java.lang.String |
removeWhiteSpaces(java.lang.String s)
As it names implies, just an alias to remove all white spaces from a
string
|
public static java.lang.String removeWhiteSpaces(java.lang.String s)
s
- the string to be cleanedpublic static java.util.Map<java.lang.String,java.lang.String> readConfigurationCSV(java.io.File f) throws java.io.IOException
f
- the CSV configuration file for an Evaluationjava.io.IOException
- if some problems occurs while reading the file