Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I 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 zip file, and then convert this readable text file into a zip files with original content (ideally with file signatures such as file timestamps being kept the same).

Please let me know. Many thanks!

share|improve this question
If the ZIP file contains binary files like images, how exactly would you like to present them in text and convert them back? – BalusC Aug 30 '11 at 23:57
@Balus The OP specified that the file is readable. – Ryan Amos Aug 31 '11 at 0:01
1  
@Ryan: "create a readable text file out of a zip file". This doesn't say that the zip file contains text files only. – BalusC Aug 31 '11 at 0:02
@Qiang: don't you mean to say that you have a ZIP file which contains a text file and that you're asking how to extract it using Java as some answerers seem to have interpreted? Honestly said, I couldn't make that up from the question... – BalusC Aug 31 '11 at 0:07
@BalusC, sorry that I did not specify this clearly earlier. I want the file to be readable, but may not be sensible. For example, I am thinking of converting all of that into hex dump file. – Qiang Li Aug 31 '11 at 0:09
show 15 more comments

closed as not a real question by BalusC, GregS, Ken White, fd., Robert Harvey Aug 31 '11 at 2:07

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

java has one: http://download.oracle.com/javase/6/docs/api/java/util/zip/package-summary.html

share|improve this answer
2  
Links to external sites without any additional information aren't answers, and shouldn't be posted as such. Answers should contain enough information to help others in the future, and to be standalone so they don't rely on external sites which may disappear (even though your link is to Oracle, nothing says that page will remain forever). This is at best a comment to the original question. – Ken White Aug 31 '11 at 0:12
@Ray, can you delete your post. I want to remove my post too. My problem is solved by myself. :) – Qiang Li Aug 31 '11 at 1:01
how do i do that? – Ray Tayek Oct 6 '11 at 0:15

Not the answer you're looking for? Browse other questions tagged or ask your own question.