Advertisement
Aldin-SXR

writeToFile

Feb 27th, 2020
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. /* Write the maximum number to a file */
  2. public static void writeToFile(String path, int maxNumber) throws IOException {
  3.     File file = new File(path);
  4.     FileWriter fw = new FileWriter(file);
  5.     fw.write(Integer.toString(maxNumber));
  6.     fw.close();
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement