Examples of ChmFile


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
Copyright © 2018 www.massapi.com. 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.