I'm working on an app that works with some very large files each are around 180mb and there are 3 of them. I would like to add an option to my app to back these files up by compressing them in a zip or a tar or something and was wondering what the best option would be to compress them down as much as possible in java/bash should i tar it zip it gzip it etc what are my best options thanks for any help
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You can do this programmatically using Apache Compress. |
|||
|
|
Look at the classes in the java.util.zip package. |
|||
|
|
|
Alright went with zip here is the method i used. I found it online and modded it to junk the path and then just raised the buffer a little got about 450mbs of data down to 100mbs so not to bad :) thanks for the help
Plus 1 to both of you :) |
|||
|
|