Creates a JSONReader from a byte array containing UTF-8 encoded JSON. @param utf8Bytes The byte array containing UTF-8 encoded JSON @return A JSONReader instance
(byte[] utf8Bytes)
| 4644 | * @return A JSONReader instance |
| 4645 | */ |
| 4646 | public static JSONReader of(byte[] utf8Bytes) { |
| 4647 | return of(utf8Bytes, 0, utf8Bytes.length, StandardCharsets.UTF_8, createReadContext()); |
| 4648 | } |
| 4649 | |
| 4650 | @Deprecated |
| 4651 | public static JSONReader of(Context context, byte[] utf8Bytes) { |