133134135136137138139140141
} } private String parseReqCode(String request) throws Exception { VariableSizeReader reader = new VariableSizeReader(new StringReader(request)); return reader.readString(CODE_LENGTH + VERSION_LENGTH); }
103104105106107108109110111