Reputation: 1452
Is there any way to Extract content of ISO file (all directories and files inside) to a give directory in a local path? Specifically using Java in windows environment.
is there any library you may suggest? or is there any work around to do so ?
thanks.
Upvotes: 11
Views: 7363
Reputation: 3789
By the time I am writing, libraries used in other answers are outdated. So I recommend sevenzipjbinding.
Upvotes: 3
Reputation: 296
The code to read the ISO9660 CD filesystem
can be generated based on the language Kaitai Struct
.
https://formats.kaitai.io/iso9660/java.html
Upvotes: 1
Reputation: 12363
I would recommend the following
Java ISO Extraction
JAVA ISO tools https://github.com/stephenc/java-iso-tools
Upvotes: 8