créer un fichier en java dans l'utilisateur home

String path = System.getProperty("user.home") + File.separator + "Documents";
File customDir = new File(path);
Black Bug