Package org.osjava.norbert

Examples of org.osjava.norbert.NoRobotClient


  protected NoRobotClient robot;

  public Robots(URL srcUrl, String robotsTxtContent, String userAgent, boolean wildcardsAllowed)
  {
    robot = new NoRobotClient(userAgent);
    robot.setWildcardsAllowed(wildcardsAllowed);
    try {
      if (srcUrl!=null && robotsTxtContent==null) {
        robot.parse(srcUrl);
      }
View Full Code Here

TOP

Related Classes of org.osjava.norbert.NoRobotClient

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.