in commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/MultipartInput.java [223:228]
public int available() throws IOException {
if (pos == -1) {
return tail - head - pad;
}
return pos - head;
}