0

I'm working on a project (java) that search for whois information for websites, so I started searching for a good websites that provides information about whois lookup, it could be easy for me if I find xml service.

This is the the site that provides the information I want to get all the result to my program .

Somone have an idea ?

Bnrdo
  • 5,325
  • 3
  • 35
  • 63
ayadi
  • 133
  • 2
  • 7

1 Answers1

0

first step: to load

InputStream in = new URL("http://toolbar.netcraft.com/site_report?url=http://louisville.edu").openStream(); 
String content=IOUtils.toString(in);
in.close();

Second step: parse XML: use DOM, read some tutorial

for example: DOM XML Parser Example

Community
  • 1
  • 1