Libraryless. Click here for Pure Java version (2576L/17K).
static void saveGZTextFile(File file, S contents, S encoding default "UTF-8") ctex { File parentFile = file.getParentFile(); if (parentFile != null) parentFile.mkdirs(); String tempFileName = file.getPath() + "_temp"; File tempFile = new File(tempFileName); if (contents != null) { if (tempFile.exists()) try { S saveName = tempFileName + ".saved." + now(); copyFile(tempFile, new File(saveName)); } catch (Throwable e) { printStackTrace(e); } FileOutputStream fileOutputStream = newFileOutputStream(tempFile.getPath()); GZIPOutputStream gos = new GZIPOutputStream(fileOutputStream); OutputStreamWriter outputStreamWriter = new OutputStreamWriter(gos, encoding); PrintWriter printWriter = new PrintWriter(outputStreamWriter); printWriter.print(contents); printWriter.close(); gos.close(); fileOutputStream.close(); } if (file.exists() && !file.delete()) throw new IOException("Can't delete " + file.getPath()); if (contents != null) if (!tempFile.renameTo(file)) throw new IOException("Can't rename " + tempFile + " to " + file); }
download show line numbers debug dex old transpilations
Travelled to 15 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, ddnzoavkxhuk, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt, xrpafgyirdlv
No comments. add comment
Snippet ID: | #1005539 |
Snippet name: | saveGZTextFile |
Eternal ID of this version: | #1005539/2 |
Text MD5: | 22412686199f51e969bb9f29617e893b |
Transpilation MD5: | d2258cccce1db74a709fcd0808806135 |
Author: | stefan |
Category: | javax |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2020-05-27 23:28:09 |
Source code size: | 1148 bytes / 28 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 596 / 652 |
Version history: | 1 change(s) |
Referenced in: | #1005970 - saveGZStructureToFile #1006654 - Standard functions list 2 (LIVE, continuation of #761) #1011611 - saveStreamToGZFile - with temp file & renaming |