Examples of Heritrix


Examples of org.archive.crawler.Heritrix

    protected void startHeritrix(String path) throws Exception {
        String authPassword =
            (new BigInteger(SecureRandom.getSeed(16))).abs().toString(16);
        String[] args = { "-j", path + "/jobs", "-a", authPassword };
        // TODO: add auth password?
        heritrix = new Heritrix();
        heritrix.instanceMain(args);
       
        configureHeritrix();

        heritrix.getEngine().requestLaunch("selftest-job");
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.