Guest User

Untitled

a guest
Jun 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. FileOutputStream fos = new FileOutputStream("t.tmp");
  2. ObjectOutputStream oos = new ObjectOutputStream(fos);
  3. oos.writeInt(12345);
  4. oos.writeObject("Today");
  5. oos.writeObject(new Date());
  6. oos.writeObject(myTimePrimitive);
  7. oos.close();
Add Comment
Please, Sign In to add comment