org.apache.commons.httpclient.methods.multipart
public class ByteArrayPartSource extends java.lang.Object implements PartSource
| Constructor and Description |
|---|
ByteArrayPartSource(java.lang.String fileName,
byte[] bytes)
Constructor for ByteArrayPartSource.
|
| Modifier and Type | Method and Description |
|---|---|
java.io.InputStream |
createInputStream()
Gets a new InputStream for reading this source.
|
java.lang.String |
getFileName()
Gets the name of the file this source represents.
|
long |
getLength()
Gets the number of bytes contained in this source.
|
public ByteArrayPartSource(java.lang.String fileName,
byte[] bytes)
fileName - the name of the file these bytes representbytes - the content of this partpublic long getLength()
PartSourcegetLength in interface PartSourcePartSource.getLength()public java.lang.String getFileName()
PartSourcegetFileName in interface PartSourcePartSource.getFileName()public java.io.InputStream createInputStream()
throws java.io.IOException
PartSourcecreateInputStream in interface PartSourcejava.io.IOException - if an error occurs when creating the InputStreamPartSource.createInputStream()