vote up 0 vote down star

phpwhois is a script for PHP that allows you to perform whois lookups on any domain:

http://sourceforge.net/projects/phpwhois/

Does anyone know of a comparable Java package that can accomplish the same thing?

Thanks!

flag

2 Answers

vote up 1 vote down check

Jakarta Commons NET claims to support Whois. Haven't used it, but generally Jakarta has reasonable APIs.

Looking at the API docs, it appears to be very easy:

WhoisClient whois;

whois = new WhoisClient();

try {
  whois.connect(WhoisClient.DEFAULT_HOST);
  System.out.println(whois.query("foobar"));
  whois.disconnect();
} catch(IOException e) {
  System.err.println("Error I/O exception: " + e.getMessage());
  return;
}
link|flag
vote up 0 vote down

See if this helps.

link|flag
Should work :-) – Toader Mihai Claudiu Aug 18 at 23:23

Your Answer

Get an OpenID
or

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