Hi, I am trying to zip up text a file in java, the file includes newline characters, it zips successfully, but when I open it up in winzip, the newline characters are gone, can anyone please advise how to resolve this? public static void zipFile(String from, String to) { try { ZipOutputStream out = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(to+".zip"))); byte[] data = ...