Returns a new {@link CharSource} for reading character data from the given file using the given character set. @since 14.0
(File file, Charset charset)
| 207 | * @since 14.0 |
| 208 | */ |
| 209 | public static CharSource asCharSource(File file, Charset charset) { |
| 210 | return asByteSource(file).asCharSource(charset); |
| 211 | } |
| 212 | |
| 213 | /** |
| 214 | * Returns a new {@link CharSink} for writing character data to the given file using the given |