(int c)
| 130 | } |
| 131 | |
| 132 | public void writeInt(int c) { |
| 133 | int i = GetSpace(4); |
| 134 | data[i++] = (byte) (c & 0xff); |
| 135 | data[i++] = (byte) (c >>> 8 & 0xff); |
| 136 | data[i++] = (byte) (c >>> 16 & 0xff); |
| 137 | data[i] = (byte) (c >>> 24 & 0xff); |
| 138 | } |
| 139 | |
| 140 | public int readInt() { |
| 141 | final int c; |