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