Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I need a web crawler (Preferably open source and java) that I can input a list of URLs (or just run multiple times I suppose considering it's open source) and that will either show me the links and allow me to tell it what path to follow or that will follow a specific path given.

What would be my best choice? Speed doesn't really matter, just the quality of the content. In the long run my goal is to search url a, go to url b (if it is on page a), then give me the results of page b. The only problem I am running in to is login authentication. If there is an easy fix for this in java that would be great to, I already have made a couple very simple web crawlers so I am not completely new but I am no expert by any means.

share|improve this question

closed as not constructive by Widor, Bob Kaufman, coreyward, Perception, Bo Persson Nov 2 '11 at 22:05

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

You should try Searchblox it's really easy to use and has all the features you're looking for. It's free, but it's not open source

share|improve this answer
I shall check out Searchblox, as well as Scrapy, thanks for the suggestions. I hope one of them works :) – Gabriel Nov 3 '11 at 19:58
X_x idk if i'd say "easy to use" is the right phrase... – Gabriel Nov 3 '11 at 20:26
@Gabriel Just deploy the .war and you're set. No configuration is needed other than setting up the crawler via the web-gui. I can't get any easier than that :) – Tommy Nov 4 '11 at 14:13

It's not Java, but you might want to check out Scrapy. It's written in Python and you can basically extend it to do anything you can imagine provided it's possible to express it with Python code. I didn't know Python before I started using it, and still found it quite easy to use.

share|improve this answer
I have a basic foundation in python thankfully so it's possible I could figure something out – Gabriel Nov 3 '11 at 20:02

Not the answer you're looking for? Browse other questions tagged or ask your own question.