Advertisement
Guest User

Untitled

a guest
May 26th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. FileWriter output = null;
  2. output = new FileWriter(name);
  3.  
  4. if (output != null)
  5. {
  6. output.write(proffesions[prof]+String.format("%n"));
  7. for(int i=0;i<4;i++)
  8. {
  9. output.write(parameters[prof][i]+String.format("%n"));
  10. }
  11. output.close();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement