(int i)
| 51 | } |
| 52 | |
| 53 | public void writeInt(int i) throws IOException { |
| 54 | write((byte)(i >> 24)); |
| 55 | write((byte)(i >> 16)); |
| 56 | write((byte)(i >> 8)); |
| 57 | write((byte)i); |
| 58 | } |
| 59 | |
| 60 | public void writeFloat(float f) throws IOException { |
| 61 | writeInt(Float.floatToIntBits(f)); |