public class ISCFileItem
extends java.lang.Object
implements org.apache.commons.fileupload2.core.FileItem
Modifier and Type | Method and Description |
---|---|
byte[] | get() |
java.lang.String | getFileName() |
java.io.InputStream | getInputStream() This method always returns the InputStream associated with the originally uploaded file. |
long | getSize() |
public byte[] get()
public java.io.InputStream getInputStream()
InputStream newStream = someFunctionThatReturnsAnInputStream(); dsRequest.getValues().put("myField", newStream);
DSRequest.getUploadedFileStream(java.lang.String)
public long getSize()
public java.lang.String getFileName()