D
Der Gast... lol
Gast
Also bisher habe ich:
Kann mir da wer helfen? muss ich das anders machen?
Code:
public class Create_new_File {
public static void main(String[] args) {
String Name = "Alexander";
File Dir = new File("Gamesave");
if (Dir.exists()) {
} else {
Dir.mkdir();
}
String saveas = "Gamesave/" + Name + ".txt";
File Savefile = new File( saveas );
// Hier will ich was in die Datei rein schreiben!!!
try {
Savefile.createNewFile();
} catch (IOException e) {
e.printStackTrace();
}
System.out.println( "created new file or saved status at: " + saveas );
}
}
Kann mir da wer helfen? muss ich das anders machen?