Writes the toString() value of each item in a collection to the specified File line by line. The specified character encoding and the default line ending will be used. NOTE: As from v1.3, the parent directories of the file will be created if they do not exist. @param f
(final File file, final String encoding, final Collection<?> lines)
| 2214 | * @since 1.1 |
| 2215 | */ |
| 2216 | public static void writeLines(final File file, final String encoding, final Collection<?> lines) |
| 2217 | throws IOException { |
| 2218 | writeLines(file, encoding, lines, null, false); |
| 2219 | } |
| 2220 | |
| 2221 | /** |
| 2222 | * Writes the <code>toString()</code> value of each item in a collection to |