public class ByteArrayResource extends AbstractResource
Resource implementation for a given byte array. Creates a ByteArrayInputStreams for the given byte array.
Useful for loading content from any given byte array, without having to resort to a single-use
InputStreamResource.
ByteArrayInputStream,
InputStreamResource| Constructor and Description |
|---|
ByteArrayResource(byte[] byteArray)
Create a new ByteArrayResource.
|
ByteArrayResource(byte[] byteArray,
java.lang.String description)
Create a new ByteArrayResource.
|
| Modifier and Type | Method and Description |
|---|---|
long |
contentLength()
This implementation returns the length of the underlying byte array.
|
boolean |
equals(java.lang.Object obj)
This implementation compares the underlying byte array.
|
boolean |
exists()
This implementation always returns
true. |
byte[] |
getByteArray()
Return the underlying byte array.
|
java.lang.String |
getDescription()
This implementation returns the passed-in description, if any.
|
java.io.InputStream |
getInputStream()
This implementation returns a ByteArrayInputStream for the underlying byte array.
|
int |
hashCode()
This implementation returns the hash code based on the underlying byte array.
|
createRelative, getFile, getFileForLastModifiedCheck, getFilename, getURI, getURL, isOpen, isReadable, lastModified, toStringpublic ByteArrayResource(byte[] byteArray)
byteArray - the byte array to wrappublic ByteArrayResource(byte[] byteArray,
java.lang.String description)
byteArray - the byte array to wrapdescription - where the byte array comes frompublic final byte[] getByteArray()
public boolean exists()
true.exists in interface Resourceexists in class AbstractResourcepublic long contentLength()
contentLength in interface ResourcecontentLength in class AbstractResourceAbstractResource.getFile()public java.io.InputStream getInputStream()
throws java.io.IOException
java.io.IOException - if the stream could not be openedByteArrayInputStreampublic java.lang.String getDescription()
Object.toString()public boolean equals(java.lang.Object obj)
equals in class AbstractResourceArrays.equals(byte[], byte[])public int hashCode()
hashCode in class AbstractResourceResource.getDescription()