Returns a new CharSource for reading character data from the given file using the given character set. @since 14.0
(File file, Charset charset)
| 215 | * @since 14.0 |
| 216 | */ |
| 217 | public static CharSource asCharSource(File file, Charset charset) { |
| 218 | return asByteSource(file).asCharSource(charset); |
| 219 | } |
| 220 | |
| 221 | /** |
| 222 | * Returns a new {@link CharSink} for writing character data to the given file using the given |
no test coverage detected