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