public final class Util
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
getString(java.io.Reader reader)
Returns the text loaded from the specified
Reader as a string. |
static void |
outputCSVLine(java.io.Writer writer,
java.lang.String[] values)
Outputs the specified array of strings to the specified
Writer in the format of a line for a CSV file. |
public static java.lang.String getString(java.io.Reader reader) throws java.io.IOException
Reader
as a string.
If a null
argument is supplied to this method, an empty string is returned.
To load text from an InputStream
, use getString(new InputStreamReader(inputStream,encoding))
.
reader
- the java.io.Reader
from which to load the text.java.io.Reader
as a string.java.io.IOException
- if an I/O error occurs.public static void outputCSVLine(java.io.Writer writer, java.lang.String[] values) throws java.io.IOException
Writer
in the format of a line for a CSV file.
"CSV" stands for Comma Separated Values. There is no formal specification for a CSV file, so there is significant variation in the way different applications handle issues like the encoding of different data types and special characters.
Generally, a CSV file contains a list of records separated by line breaks, with each record consisting of a list of field values separated by commas. Each record in the file should contain the same number of field values, with the values at each position representing the same type of data in all the records. In this way the file can also be divided into columns, often with the first line of the file containing the column labels.
Columns can have different data types such as text, numeric, date / time and boolean.
A text value is often delimited with single ('
) or double-quotes ("
),
especially if the value contains a comma, line feed, or other special character that is significant to the syntax.
Encoding techniques for including quote characters themselves in text values vary widely.
Values of other types are generally unquoted to distinguish them from text values.
This method produces output that is readable by MS-Excel, conforming to the following rules:
Config.ColumnValueTrue
and Config.ColumnValueFalse
, representing the boolean values true
and false
respectively.
""
).
null
values are represented as empty fields.
writer
- the destination java.io.Writer
for the output.java.io.IOException
- if an I/O error occurs.FormFields.getColumnLabels()
,
FormFields.getColumnValues(Map)