public InputStream getInputStream()

in commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/DiskFileItem.java [372:381]


    public InputStream getInputStream() throws IOException {
        if (!isInMemory()) {
            return Files.newInputStream(dfos.getFile().toPath());
        }

        if (cachedContent == null) {
            cachedContent = dfos.getData();
        }
        return new ByteArrayInputStream(cachedContent);
    }