(int[] ints)
| 92 | // ======================================================================== |
| 93 | |
| 94 | private static void storeOO(int[] ints) { |
| 95 | ObjectOutputStream out = null; |
| 96 | try { |
| 97 | out = new ObjectOutputStream(new FileOutputStream("object.out")); |
| 98 | out.writeObject(ints); |
| 99 | } catch (IOException e) { |
| 100 | throw new RuntimeException(e); |
| 101 | } finally { |
| 102 | safeClose(out); |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | private static void storeBDO(int[] ints) { |
| 107 | DataOutputStream out = null; |