(long peer, long position, byte[] buffer,
int offset, int length)
| 131 | } |
| 132 | |
| 133 | private static native int readBytes(long peer, long position, byte[] buffer, |
| 134 | int offset, int length); |
| 135 | |
| 136 | public void write(int b) throws IOException { |
| 137 | int count = writeBytes(peer, position, new byte[] { (byte)b }, 0, 1); |