Skip to content

Commit b8696fb

Browse files
mkargmichael-o
authored andcommitted
Using Files.readAllBytes instead of custom loop
1 parent 6288353 commit b8696fb

File tree

1 file changed

+7
-24
lines changed

1 file changed

+7
-24
lines changed

src/main/java/org/codehaus/plexus/util/FileUtils.java

+7-24
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,14 @@
6262
import java.io.File;
6363
import java.io.IOException;
6464
import java.io.InputStream;
65-
import java.io.InputStreamReader;
6665
import java.io.OutputStream;
6766
import java.io.OutputStreamWriter;
6867
import java.io.Reader;
6968
import java.io.Writer;
7069
import java.net.URL;
7170
import java.nio.charset.Charset;
7271
import java.nio.file.Files;
72+
import java.nio.file.Path;
7373
import java.nio.file.Paths;
7474
import java.nio.file.StandardOpenOption;
7575
import java.security.SecureRandom;
@@ -355,33 +355,16 @@ public static String fileRead( File file )
355355
public static String fileRead( File file, String encoding )
356356
throws IOException
357357
{
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 );
371359
}
372360

373-
private static InputStreamReader getInputStreamReader( File file, String encoding ) throws IOException
361+
private static String fileRead( Path path, String encoding )
362+
throws IOException
374363
{
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 );
383366
}
384-
367+
385368
/**
386369
* Appends data to a file. The file will be created if it does not exist. Note: the data is written with platform
387370
* encoding

0 commit comments

Comments
 (0)