Returns a CharSource that reads from the given URL using the given character set. @since 14.0
(URL url, Charset charset)
| 85 | * @since 14.0 |
| 86 | */ |
| 87 | public static CharSource asCharSource(URL url, Charset charset) { |
| 88 | return asByteSource(url).asCharSource(charset); |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * Reads all bytes from a URL into a byte array. |
no test coverage detected