Package de.tu_darmstadt.informatik.rbg.hatlak.rockridge.impl

Examples of de.tu_darmstadt.informatik.rbg.hatlak.rockridge.impl.RockRidgeConfig


        final ISO9660RootDirectory root = new ISO9660RootDirectory();
        try {
            root.addContentsRecursively(src);
            final StreamHandler streamHandler = new ISOImageFileHandler(dest);
            CreateISO iso = new CreateISO(streamHandler, root);
            iso.process(new ISO9660Config(), new RockRidgeConfig(), new JolietConfig(), null);
        } catch (Exception e) {
            throw new RuntimeException("failed to create image", e);
        }
    }
View Full Code Here

TOP

Related Classes of de.tu_darmstadt.informatik.rbg.hatlak.rockridge.impl.RockRidgeConfig

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.