You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package FileManager;// FileManager.java
import java.io.*;
import java.nio.file.Files;
import java.nio.file.Paths;
public class FileManager {
public static void createFile(String fileName, String content) throws IOException {
// Delete the file if it already exists so that we start with a fresh file.
File file = new File(fileName);
if (file.exists()) {
file.delete();
}
// Create the file and write the content.
try (BufferedWriter writer = new BufferedWriter(new FileWriter(file))) {
writer.write(content);
}
}
public static String getContentFile(String fileName) throws IOException {
// Read all bytes from the file and convert them to a String using the default charset.
return new String(Files.readAllBytes(Paths.get(fileName)));
}
public static void deleteFile(String fileName) {
// Delete the file if it exists.
File file = new File(fileName);
if (file.exists()) {
file.delete();
}
}
}
check file
package FileManager;
import java.io.IOException;
public class ExerciseRunner {
public static void main(String[] args) throws IOException {
FileManager.createFile("file.txt", "Lorem ipsum");
System.out.println(FileManager.getContentFile("file.txt"));
System.out.println(FileManager.getContentFile("file.txt").equals("Lorem ipsum"));
//FileManager.deleteFile("file.txt");
}
}
In the terminal I GET
Lorem ipsum
true
Process finished with exit code 0
In my opinion, the automated tests for the piscine-java > io-args > file-manager task are not set up correctly.
I noticed that the following code:
while ((line = reader.readLine()) != null) {
content.append(line).append("\n");
}
appends an extra new line at the end of the resulting string, which causes the tests to pass. However, I have verified that an alternative approach - one that does not append this extra newline - results in test failures. This suggests that the tests may be expecting an incorrect output.
Could you please let me know where the repository for these tests is located?
I would be happy to submit a fix (or at least try to).
Thank you!
Pomog
changed the title
FileManager subject
piscine-java > io-args > file-manager: Automated Tests Expecting an Extra Newline
Feb 12, 2025
HarryVasanth
changed the title
piscine-java > io-args > file-manager: Automated Tests Expecting an Extra Newline
[BUG] piscine-java > io-args > file-manager: Automated Tests Expecting an Extra Newline
Mar 26, 2025
piscine-java
FileManager
my code is
check file
In the terminal I GET
The ERRORS I GET FROM https://01.kood.tech/intra/johvi/div-01/piscine-java/io-args/file-manager
Please clarify or correct this Error
The text was updated successfully, but these errors were encountered: