|
62 | 62 | import java.io.File;
|
63 | 63 | import java.io.IOException;
|
64 | 64 | import java.io.InputStream;
|
65 |
| -import java.io.InputStreamReader; |
66 | 65 | import java.io.OutputStream;
|
67 | 66 | import java.io.OutputStreamWriter;
|
68 | 67 | import java.io.Reader;
|
69 | 68 | import java.io.Writer;
|
70 | 69 | import java.net.URL;
|
71 | 70 | import java.nio.charset.Charset;
|
72 | 71 | import java.nio.file.Files;
|
| 72 | +import java.nio.file.Path; |
73 | 73 | import java.nio.file.Paths;
|
74 | 74 | import java.nio.file.StandardOpenOption;
|
75 | 75 | import java.security.SecureRandom;
|
@@ -355,33 +355,16 @@ public static String fileRead( File file )
|
355 | 355 | public static String fileRead( File file, String encoding )
|
356 | 356 | throws IOException
|
357 | 357 | {
|
358 |
| - StringBuilder buf = new StringBuilder(); |
359 |
| - |
360 |
| - try ( Reader reader = getInputStreamReader( file, encoding ) ) |
361 |
| - { |
362 |
| - int count; |
363 |
| - char[] b = new char[512]; |
364 |
| - while ( ( count = reader.read( b ) ) >= 0 ) // blocking read |
365 |
| - { |
366 |
| - buf.append( b, 0, count ); |
367 |
| - } |
368 |
| - } |
369 |
| - |
370 |
| - return buf.toString(); |
| 358 | + return fileRead( file.toPath(), encoding ); |
371 | 359 | }
|
372 | 360 |
|
373 |
| - private static InputStreamReader getInputStreamReader( File file, String encoding ) throws IOException |
| 361 | + private static String fileRead( Path path, String encoding ) |
| 362 | + throws IOException |
374 | 363 | {
|
375 |
| - if ( encoding != null ) |
376 |
| - { |
377 |
| - return new InputStreamReader( Files.newInputStream( file.toPath() ), encoding ); |
378 |
| - } |
379 |
| - else |
380 |
| - { |
381 |
| - return new InputStreamReader( Files.newInputStream( file.toPath() ) ); |
382 |
| - } |
| 364 | + byte[] bytes = Files.readAllBytes( path ); |
| 365 | + return encoding != null ? new String( bytes, encoding ) : new String( bytes ); |
383 | 366 | }
|
384 |
| - |
| 367 | + |
385 | 368 | /**
|
386 | 369 | * Appends data to a file. The file will be created if it does not exist. Note: the data is written with platform
|
387 | 370 | * encoding
|
|
0 commit comments