8283848586878889
writer.close(); Reader resultReader = getReader(getFileInputStream(file .getAbsolutePath())); return resultReader; } catch (IOException e) { throw new IORuntimeException(e); } }
85868788899091929394
if ((c != ' ' && c != '\t' && c != '\r' && c != '\n' && c != '\f')) { builder.append((char)c); } } } catch (IOException e) { throw new IORuntimeException(e); } return builder.toString(); }
157158159160161162163164
&& start < buffer.length) { start += count; } return start; } catch (IOException e) { throw new IORuntimeException(e); } }
172173174175176177178179180181182
private void readCharacter() { int readResult; try { readResult = reader.read(); } catch (IOException e) { throw new IORuntimeException(e); } if (readResult == -1) { length = position; } else { char character = (char)readResult;