|
|
@ -217,7 +217,8 @@ public class Decompiler { |
|
|
|
ex.printStackTrace(GlobalOptions.err); |
|
|
|
ex.printStackTrace(GlobalOptions.err); |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
writer = new TabbedPrintWriter(destZip, imports); |
|
|
|
writer = new TabbedPrintWriter(new BufferedOutputStream(destZip), |
|
|
|
|
|
|
|
imports, false); |
|
|
|
} |
|
|
|
} |
|
|
|
for (; i< params.length; i++) { |
|
|
|
for (; i< params.length; i++) { |
|
|
|
try { |
|
|
|
try { |
|
|
@ -245,8 +246,9 @@ public class Decompiler { |
|
|
|
("Could not create directory " |
|
|
|
("Could not create directory " |
|
|
|
+ directory.getPath() + ", check permissions."); |
|
|
|
+ directory.getPath() + ", check permissions."); |
|
|
|
} |
|
|
|
} |
|
|
|
writer = new TabbedPrintWriter(new FileOutputStream(file), |
|
|
|
writer = new TabbedPrintWriter |
|
|
|
imports); |
|
|
|
(new BufferedOutputStream(new FileOutputStream(file)), |
|
|
|
|
|
|
|
imports, false); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
GlobalOptions.err.println(params[i]); |
|
|
|
GlobalOptions.err.println(params[i]); |
|
|
|