public final class WhoisClient extends FingerClient
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;
}
| Modifier and Type | Field | Description |
|---|---|---|
static java.lang.String |
DEFAULT_HOST |
The default whois host to query.
|
static int |
DEFAULT_PORT |
The default whois port.
|
_defaultPort_, _input_, _isConnected_, _output_, _socket_, _socketFactory_, _timeout_, NETASCII_EOL| Constructor | Description |
|---|---|
WhoisClient() |
The default whois constructor.
|
| Modifier and Type | Method | Description |
|---|---|---|
java.io.InputStream |
getInputStream(java.lang.String handle) |
Queries the connected whois server for information regarding
the given handle and returns the InputStream of the network connection.
|
java.lang.String |
query(java.lang.String handle) |
Queries the connected whois server for information regarding
the given handle.
|
getInputStream, getInputStream, query, queryclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait_connectAction_, connect, connect, connect, connect, connect, connect, disconnect, getDefaultPort, getDefaultTimeout, getLocalAddress, getLocalPort, getRemoteAddress, getRemotePort, getSoLinger, getSoTimeout, getTcpNoDelay, isConnected, setDefaultPort, setDefaultTimeout, setSocketFactory, setSoLinger, setSoTimeout, setTcpNoDelay, verifyRemotepublic static final java.lang.String DEFAULT_HOST
public static final int DEFAULT_PORT
public WhoisClient()
DEFAULT_PORT .public java.lang.String query(java.lang.String handle)
throws java.io.IOException
handle - The handle to lookup.java.io.IOException - If an I/O error occurs during the operation.public java.io.InputStream getInputStream(java.lang.String handle)
throws java.io.IOException
handle - The handle to lookup.java.io.IOException - If an I/O error occurs during the operation.