Examine what the following piece of code will print to file.txt?
File file = new File("file.txt"); // some file
try (PrintWriter printWriter = new PrintWriter(file)) {
printWriter.printf("%s dolor sit %s", "Lorem", "ipsum", "amet");
}Examine what the following piece of code will print to file.txt?
File file = new File("file.txt"); // some file
try (PrintWriter printWriter = new PrintWriter(file)) {
printWriter.printf("%s dolor sit %s", "Lorem", "ipsum", "amet");
}Create a free account to access the full topic