Guest User

Untitled

a guest
May 22nd, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. import java.io.*;
  2.  
  3.  
  4. public class Save {
  5.  
  6.  
  7. public void save() {
  8.  
  9.  
  10. MainMenu menu = new MainMenu();
  11. Player player = new Player();
  12.  
  13. try {
  14.  
  15. PrintWriter save = new PrintWriter(new FileWriter("save.txt"));
  16. for(String str : Player.inventory) {
  17.  
  18. save.print(str + ", ");
  19. }
  20. save.println("");
  21. save.println(Player.goldCoins);
  22. save.println(Player.amntStone);
  23. save.println(Player.amntCoal);
  24. save.println(Player.amntBronze);
  25. save.println(Player.amntIron);
  26. save.println(Player.amntDiamond);
  27. save.close();
  28. System.out.println("Save successful");
  29. menu.start();
  30.  
  31. }catch (Exception e) {
  32.  
  33. System.out.println("");
  34. System.out.println("Error: The file couldn't be saved.");
  35. System.out.println("");
  36. menu.start();
  37.  
  38.  
  39. }
  40.  
  41. }
  42.  
  43. }
Add Comment
Please, Sign In to add comment