mirror of
https://github.com/corda/corda.git
synced 2025-01-09 22:42:40 +00:00
38 lines
831 B
Java
38 lines
831 B
Java
package java.io;
|
|
|
|
public class ByteArrayInputStream extends InputStream {
|
|
private final byte[] array;
|
|
private int position;
|
|
private final int length;
|
|
|
|
public ByteArrayInputStream(byte[] array, int offset, int length) {
|
|
this.array = array;
|
|
position = offset;
|
|
this.length = length;
|
|
}
|
|
|
|
public int read() {
|
|
if (position < length) {
|
|
return array[position++] & 0xff;
|
|
} else {
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
public int read(byte[] buffer, int offset, int bufferLength) {
|
|
if (position < length) {
|
|
return -1;
|
|
}
|
|
if (length-position < bufferLength) {
|
|
bufferLength = length-position;
|
|
}
|
|
System.arraycopy(buffer, offset, array, position, bufferLength);
|
|
position += bufferLength;
|
|
return bufferLength;
|
|
}
|
|
|
|
public int available() {
|
|
return length - position;
|
|
}
|
|
}
|