(byte[] b, int offset, int length)
| 50 | } |
| 51 | |
| 52 | private byte[] copy(byte[] b, int offset, int length) { |
| 53 | byte[] array = new byte[length]; |
| 54 | System.arraycopy(b, offset, array, 0, length); |
| 55 | return array; |
| 56 | } |
| 57 | |
| 58 | public void write(byte[] b, int offset, int length) { |
| 59 | if (b == null) { |