Tagged Questions

1
vote
3answers
90 views

How can I search for broken links of a website using Java?

I would like to scan some websites looking for broken links, preferably using Java. Any hint how can I start doing this? (I know there are some websites that do this, but I want to make my own ...
1
vote
1answer
426 views

Check for broken links

I am trying to find all the broken links in the webpage using Java. Here is the code: private static boolean isLive(String link){ HttpURLConnection urlconn = null; int res = -1; ...
1
vote
2answers
638 views

Why this java link checker code does not compile?

I already read the link checker question posted in SO. If there are more questions of this kind and I missed them, my apologies. We need to find broken links in a website in a very easy way and ...
0
votes
3answers
129 views

Efficiently detect broken urls in Java

What's the most efficient way to detect a broken url (HTTP 404) in Java? I'd like to do this in a loop and take as little time as possible.