Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 257
LeTex Avatar asked Dec 28 '12 10:12

LeTex


2 Answers

I would recommend the following

Java ISO Extraction

  • JAVA ISO tools https://github.com/stephenc/java-iso-tools

  • Loopy http://loopy.sourceforge.net/

  • JIIC: Java ISO Image Creator (a bit old -- uses Java 1.4)

like image 106
AurA Avatar answered Sep 21 '22 10:09

AurA


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).

like image 40
Eng.Fouad Avatar answered Sep 22 '22 10:09

Eng.Fouad