LeTex
LeTex

Reputation: 1452

Extracting ISO file using Java

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

Answers (4)

Anonymous Creator
Anonymous Creator

Reputation: 3789

By the time I am writing, libraries used in other answers are outdated. So I recommend sevenzipjbinding.

Upvotes: 3

Leonis
Leonis

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

AurA
AurA

Reputation: 12363

I would recommend the following

Java ISO Extraction

Upvotes: 8

Eng.Fouad
Eng.Fouad

Reputation: 117587

Take a look at Loopy.

Loopy is a Java API for accessing various file systems in a read-only manner. Loopy was developed as a plug-in for Apache Commons VFS. Currently, it only supports the ISO9660 file system (i.e. .iso files).

Upvotes: 2

Related Questions