Package com.ontometrics.scraper

Examples of com.ontometrics.scraper.ScrapedRecord


          builtUrl = convertToAbsoluteUrl(link.getValue());
        }
        log.debug("Using link = {}", builtUrl);
        List<Field> fields = new ArrayList<Field>(detailScraper.url(new URL(builtUrl)).getFields());
        log.debug("returned fields = {}", fields);
        records.add(new ScrapedRecord(fields));
      } catch (MalformedURLException e) {
        log.info("Bad URL in looping detail page for listing links: {}", e.toString());
      }
    }
    return this;
View Full Code Here

TOP

Related Classes of com.ontometrics.scraper.ScrapedRecord

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.