1. Where can I learn about text compression in Java? stackoverflow.comWhere can I learn about text compression in Java? What classes would be used, and how would I use them? |
2. Reading text files in a zip archive stackoverflow.comI have zip archive that contains a bunch of plain text files in it. I want to parse each text files data. Here's what I've written so far:
|
3. Text file created from zip file and converted back to zip file in JAVA stackoverflow.comI am wondering if anyone knows a utility to create a readable text file (not necessarily sensible because the files may contain executables, pictures, other application-specific formated files) out of a ... |
4. GZip from a File that contains text data as well stackoverflow.comWe get a gzip file via MQ and this has some message properties appended to the stream as well. Can we read the gzip data from the stream and unzip it? ... |
5. how to read text file in zip file coderanch.com |
6. zip file does not contain any text file ?? coderanch.comHello everyone I've tried to create zip file from multiple text file. This is code snippet. // These are the files to include in the ZIP file String[] filenames = new String[]{"c:\\temp\\text1.txt", "c:\\temp\\text2.txt"}; // Create a buffer for reading the files byte[] buf = new byte[1024]; try { // Create the ZIP file String outFilename = "c:\\temp\\zipOut.zip"; ZipOutputStream out = new ... |
7. Losing newlines in text file when zipping coderanch.comHi, 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 = ... |
8. Making ZIP archive of text and images... forums.oracle.com |
9. writing a text file directly to a ZIP forums.oracle.com |