コード例 #1
0
 @NotNull
 public static String loadFile(
     @NotNull File file, @Nullable @NonNls String encoding, boolean convertLineSeparators)
     throws IOException {
   return FileUtilRt.loadFile(file, encoding, convertLineSeparators);
 }
コード例 #2
0
 @NotNull
 public static String loadFile(@NotNull File file, boolean convertLineSeparators)
     throws IOException {
   return FileUtilRt.loadFile(file, convertLineSeparators);
 }
コード例 #3
0
 @NotNull
 public static String loadFile(@NotNull File file, @Nullable @NonNls String encoding)
     throws IOException {
   return FileUtilRt.loadFile(file, encoding);
 }
コード例 #4
0
 @NotNull
 public static String loadFile(@NotNull File file) throws IOException {
   return FileUtilRt.loadFile(file);
 }