(String path)
| 96 | } |
| 97 | |
| 98 | public static String loadStringFromFile(String path) throws FileNotFoundException, IOException { |
| 99 | BufferedReader br = getTextFileReader(path); |
| 100 | String line = br.readLine().strip(); |
| 101 | return line; |
| 102 | } |
| 103 | |
| 104 | public static void writeIntArrayToFile(String path, int[] arr) throws IOException { |
| 105 | Writer fr = getTextFileWriter(path, false); |
nothing calls this directly
no test coverage detected