Improve `MainUtil#copyFile` (#1888)

Dieser Commit ist enthalten in:
Aurélien 2022-08-02 11:25:56 +02:00 committet von GitHub
Ursprung 7a498497c5
Commit e942175559
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -560,18 +560,14 @@ public class MainUtil {
return newFile; return newFile;
} }
try (InputStream stream = Fawe.class.getResourceAsStream(resource.startsWith("/") ? resource : "/" + resource)) { try (InputStream stream = Fawe.class.getResourceAsStream(resource.startsWith("/") ? resource : "/" + resource)) {
byte[] buffer = new byte[2048];
if (stream == null) { if (stream == null) {
try (ZipInputStream zis = new ZipInputStream(new FileInputStream(jar))) { try (ZipInputStream zis = new ZipInputStream(new FileInputStream(jar))) {
ZipEntry ze = zis.getNextEntry(); ZipEntry ze = zis.getNextEntry();
while (ze != null) { while (ze != null) {
String name = ze.getName(); String name = ze.getName();
if (name.equals(resource)) { if (name.equals(resource)) {
try (FileOutputStream fos = new FileOutputStream(newFile)) { try (OutputStream outputStream = Files.newOutputStream(newFile.toPath())) {
int len; zis.transferTo(outputStream);
while ((len = zis.read(buffer)) > 0) {
fos.write(buffer, 0, len);
}
} }
ze = null; ze = null;
} else { } else {
@ -587,11 +583,8 @@ public class MainUtil {
parent.mkdirs(); parent.mkdirs();
} }
newFile.createNewFile(); newFile.createNewFile();
try (FileOutputStream fos = new FileOutputStream(newFile)) { try (OutputStream outputStream = Files.newOutputStream(newFile.toPath())) {
int len; stream.transferTo(outputStream);
while ((len = stream.read(buffer)) > 0) {
fos.write(buffer, 0, len);
}
} }
return newFile; return newFile;
} }