120121122123124125126127128129
} } while (!line.equals("")); _contentStream = is; if (_chunked) { _contentStream = new ChunkedInputStream(_contentStream); } else if (_length > -1) { _contentStream = new FixedLengthInputStream(_contentStream, _length); } }