Weird JDK 8 issue about unable to find properties files, applied a fix and added extra logging

This commit is contained in:
Nanne Baars 2015-09-01 22:43:45 +02:00
parent d126124649
commit 5ca36502d3

View File

@ -10,7 +10,6 @@ import java.nio.file.Files;
import java.nio.file.OpenOption;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
@ -76,7 +75,7 @@ public class PluginFileUtils {
byte[] fileAsBytes = Files.readAllBytes(file);
String fileAsString = new String(fileAsBytes);
fileAsString = fileAsString.replaceAll(replace, with);
Files.write(file, fileAsString.getBytes(), StandardOpenOption.TRUNCATE_EXISTING);
Files.write(file, fileAsString.getBytes());
}
public static void writeFile(Path targetFile, byte[] bytes, OpenOption... options) throws IOException {