I'm using WhoisClient
(org.apache.commons.net.whois.WhoisClient
) to retrieve my website domain expiry date. It is working for the domain with .com
extension. When I try to check the expiry date for one of my .org
domain the result says No match for domain.org
. How do I find out the expiry date of a .org
and .in
extension domain?
I'm using the following code for getting the expiry date of the domain
String domainName = mydomain.replaceFirst("^(http[s]?://www\\.|http[s]?://|www\\.)","");WhoisClient whois = new WhoisClient();whois.connect(WhoisClient.DEFAULT_HOST);String whoisData1 = whois.query("="+ domainName);whois.disconnect();