Returns a new CharSource for reading character data from the given file using the given character set. @since 14.0
(File file, Charset charset)
| 221 | |
| 222 | |
| 223 | public static CharSource asCharSource(File file, Charset charset) { |
| 224 | return asByteSource(file).asCharSource(charset); |
| 225 | } |
| 226 | |
| 227 | /** |
| 228 | * Returns a new {@link CharSink} for writing character data to the given file using the given |
no test coverage detected