FileOutputStream out = null;
try {
in = new FileInputStream(file1);
out = new FileOutputStream(file2);
ZipUtil.transformEntry(in, name, new StringZipEntryTransformer("UTF-8") {
protected String transform(ZipEntry zipEntry, String input) throws IOException {
return input.toUpperCase();
}
} , out);
}