AndroidLookup  0.02
 All Classes Namespaces Files Functions Variables Pages
Protected Member Functions | List of all members
com.jburto2.androidlookup.LookupWhoisTask Class Reference

This class is an LookupTask that looks up a hostname given an IP address and an IP address if given a hostname. Adapted from http://stackoverflow.com/questions/6343166/android-os-networkonmainthreadexception. More...

Inheritance diagram for com.jburto2.androidlookup.LookupWhoisTask:
com.jburto2.androidlookup.LookupTask

Protected Member Functions

String doInBackground (String...urls)
 This function uses org.apache.commons.net.whois.WhoisClient to get the whois information for a site. More...
 
void onPostExecute (String str)
 Method to be done after the task has executed. More...
 
- Protected Member Functions inherited from com.jburto2.androidlookup.LookupTask
String doInBackground (String...urls)
 This function makes the function call in the background. More...
 
void onPostExecute (String str)
 Method to be done after the task has executed. More...
 

Additional Inherited Members

- Public Member Functions inherited from com.jburto2.androidlookup.LookupTask
Exception getException ()
 
String getExceptionMsg ()
 
- Protected Attributes inherited from com.jburto2.androidlookup.LookupTask
Exception exception
 This holds any exception generated from the lookup call. More...
 

Detailed Description

This class is an LookupTask that looks up a hostname given an IP address and an IP address if given a hostname. Adapted from http://stackoverflow.com/questions/6343166/android-os-networkonmainthreadexception.

Author
James Burton

Definition at line 19 of file LookupWhoisTask.java.

Member Function Documentation

protected String com.jburto2.androidlookup.LookupWhoisTask.doInBackground ( String...  urls)
protected

This function uses org.apache.commons.net.whois.WhoisClient to get the whois information for a site.

Adapted from from http://www.mkyong.com/java/java-whois-example/

Parameters
urlsArray of strings that are arguments to the function. url[0] is the address to lookup.
Returns
String that represents either the IP address or the hostname if call succeeded.
null If the call failed.
Exceptions
Exceptiongenerated from InetAddress call is stored in the public instance variable exception.

Definition at line 37 of file LookupWhoisTask.java.

protected void com.jburto2.androidlookup.LookupWhoisTask.onPostExecute ( String  str)
protected

Method to be done after the task has executed.

Parameters
strSome string

Definition at line 75 of file LookupWhoisTask.java.


The documentation for this class was generated from the following file: