Package com.google.code.jchmweb.jchmweb2

Examples of com.google.code.jchmweb.jchmweb2.ChmFile


import java.nio.ByteBuffer;

class ChmExtract {

    void main(String pathToCHMFile, String pathToTmpDir) throws IOException {
        ChmFile chmFile = null;
        long time = System.currentTimeMillis(), time_prev = time;
        chmFile = new ChmFile(pathToCHMFile);      

        chmFile.enumerate(ChmFile.CHM_ENUMERATE_ALL,
                new Extractor(chmFile, pathToTmpDir));
        time = System.currentTimeMillis();
        Vars.logger.info("    finished in " + (time - time_prev) + " ms");
    }
View Full Code Here

TOP

Related Classes of com.google.code.jchmweb.jchmweb2.ChmFile

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.