Libraryless. Click here for Pure Java version (4893L/27K).
1 | static File zip2uncompressedZip(File in) {
|
2 | ret zip2uncompressedZip(in, appendToBaseName(in, ".uncompressed")); |
3 | } |
4 | |
5 | static File zip2uncompressedZip(File in, File out) {
|
6 | {
|
7 | temp var zipOut = zipOutputStream(out); |
8 | zipOut.setMethod(ZipOutputStream.STORED); |
9 | zip2zip_stored(in, zipOut); |
10 | } |
11 | print("Converted " + renderFileInfo(in) + " (deflated) to "
|
12 | + renderFileInfo(out) + " (stored)"; |
13 | ret out; |
14 | } |
download show line numbers debug dex old transpilations
Travelled to 4 computer(s): bhatertpkbcr, ekrmjmnbrukm, mowyntqkapby, mqqgnosmbjvj
No comments. add comment
| Snippet ID: | #1033492 |
| Snippet name: | zip2uncompressedZip |
| Eternal ID of this version: | #1033492/5 |
| Text MD5: | 92a2c1acc621457ab4c9c12667120f82 |
| Transpilation MD5: | be48621bcd72b5bd662b70c07a2f4461 |
| Author: | stefan |
| Category: | javax |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2021-10-29 06:37:03 |
| Source code size: | 427 bytes / 14 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 389 / 501 |
| Version history: | 4 change(s) |
| Referenced in: | [show references] |