![JAR search and dependency download from the Maven repository](/logo.png)
com.silentgo.json.parser.StringReader Maven / Gradle / Ivy
package com.silentgo.json.parser;
/**
* Project : json
* Package : com.silentgo.json.parser
*
* @author teddyzhu
*
* Created by teddyzhu on 2017/1/12.
*/
public class StringReader extends ByteReader {
public StringReader(String input) {
super(input.getBytes(), -1, input.getBytes().length);
}
public StringReader(String input, int pos, int end) {
super(input.getBytes(), pos, end);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy