(String path)
| 445 | } |
| 446 | |
| 447 | private static String readFile(String path) throws IOException { |
| 448 | return readFile(new File(path)); |
| 449 | } |
| 450 | |
| 451 | private static String readFile(File file) throws IOException { |
| 452 | FileInputStream stream = new FileInputStream(file); |