public static String read(final File file) throws IOException { return DiscUtil.utf8(DiscUtil.readBytes(file)); }
public static void write(final File file, final String content) throws IOException { DiscUtil.writeBytes(file, DiscUtil.utf8(content)); }