Examples of UrlDownloadJob


Examples of de.phleisch.app.itsucks.job.download.impl.UrlDownloadJob

    //create an job factory
    DownloadJobFactory jobFactory = (DownloadJobFactory)
      context.getBean("JobFactory");
   
    //create an initial job
    UrlDownloadJob job = jobFactory.createDownloadJob();
    job.setUrl(new URL("http://itsucks.sourceforge.net/"));
    job.setSavePath(new File("/tmp/crawl")); //change this for windows
    job.setIgnoreFilter(true);
    dispatcher.addJob(job);
   
    mLog.info("Start demo dispatcher");
   
    //start the dispatcher
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.