6061626364656667686970
public void writeTo(OutputStream out, long start, long count) throws IOException { InputStream in = new StringInputStream(extensionJs); try { in.skip(start); if (count<0) IO.copy(in, out); else IO.copy(in, out, (int)count); }