private static void convertFilesToZip(ArrayList filePaths, String zipFilePath) throws Exception {
try ( ZipOutputStream out = new ZipOutputStream(new FileOutputStream(zipFilePath));) {
for (String filePath : filePaths) {
File fileToZip = new File(filePath);
ZipEntry e = new ZipEntry(new File(filePath).getName());
out.putNextEntry(e);
Files.copy(fileToZip.toPath(), out);
}
}
}
In this sub-domain, there are various laboratory for future projects, there startups, future prospectus ideas, etc. If after going a while, it is felt that a particular topic has a large prospectus, then, a seperate subdomain is creating for that topic that topic is hosted there.
Notes: Java module to create Zipped Folder from list of Files
Subscribe to:
Post Comments (Atom)
Various types of salts effect on health (discussion with gemenie)
Is rock salt or bitnoon helps in digestion or just a airuvedic nuska This is for informational purposes only. For medical advice or diagnos...
-
private static void convertImagesToPdf(ArrayList<String> imagesFilePath, String pdfFilePath) throws Exception { try ( PDDocum...
-
You said: uninstall postgres completely from ubuntu ChatGPT said: ChatGPT To completely uninstall PostgreSQL from your Ubuntu system, includ...
-
Query: C mu_json JSON_checker YAJL LibU json-c json-parser jsonsl WJElement M's JSON parser cJSON Jansson jsmn parson ujson4c frozen mic...
No comments:
Post a Comment
If you have any doubts, please let me know.