public static String readFile()

in src/main/java/web/IOUtils.java [24:27]


	public static String readFile(String path) throws IOException {
		byte[] encoded = Files.readAllBytes(Paths.get(path));
		return new String(encoded, "UTF-8");
	}