I have some concurrency problems with ZipInputStream
and I found that it is not safe thread. Do you know any alternative which is threaded safe?
Thank you
I have some concurrency problems with ZipInputStream
and I found that it is not safe thread. Do you know any alternative which is threaded safe?
Thank you
Well You will search for everyplace for a Thread Safe for a ZipInputStream. But the downside of this that none of the InputStream implementations in Java are thread-safe. The only way of doing this is Synch your code for only a Thread access the file that you want.