Advertisement
Guest User

Untitled

a guest
Jan 21st, 2018
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. private void serializeClickss()
  2. {
  3. try {
  4. FileOutputStream fo = new FileOutputStream("C:\\Users\\dawid\\Desktop\\save");
  5. ObjectOutputStream outputStream = new ObjectOutputStream(fo);
  6. outputStream.writeObject(countClicks);
  7. fo.close();
  8. }
  9. catch(IOException e){
  10.  
  11. }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement