This whois client defaults to the whois.internic.net server : Various Clients « Network Protocol « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JDK 6
25.JNDI LDAP
26.JPA
27.JSP
28.JSTL
29.Language Basics
30.Network Protocol
31.PDF RTF
32.Reflection
33.Regular Expressions
34.Scripting
35.Security
36.Servlets
37.Spring
38.Swing Components
39.Swing JFC
40.SWT JFace Eclipse
41.Threads
42.Tiny Application
43.Velocity
44.Web Services SOA
45.XML
Java » Network Protocol » Various ClientsScreenshots 
This whois client defaults to the whois.internic.net server

/*
Chapter 3 - Simple Protocols
Java 2 Network Protocols Black Book
by Al Williams    
Paraglyph Press 2001

*/
import java.net.*;
import java.io.*;

public class Whois {
    public void whois(String querythrows IOException {
    whois(query,"whois.internic.net");
    }

    public String whois(String query, String serverthrows IOException {
       Socket sock = new Socket(server,43);
       int c=0;
       String outstring="";
       OutputStream os = sock.getOutputStream();
       InputStream is = sock.getInputStream();
       query += "\r\n";
       os.write(query.getBytes("iso8859_1"));
       try {
           while (c!=-1) {
             c=is.read();
             if (c!=-1outstring+=(char)c;
           }
       }
       catch (IOException e) {}
       return outstring;
    }
    public static void main(String[] args) {
       String hostname = "";
       String ulist = "";
       if (args.length==0) {
           System.out.println("usage: whois [%host] query");
           System.exit(1);
       }
       int argn=0;
       hostname="whois.networksolutions.com"// default
       if (args.length>&& args[0].charAt(0)=='%') {
           hostname=args[argn].substring(1);
            argn++;
       }
        for (int i=argn; i<args.length; i++
             ulist+=args[i]+" ";
       Whois worker = new Whois();
       try {
           System.out.println(worker.whois(ulist.trim(),hostname));
       }
       catch (Exception e) {
           System.out.println(e);
       }
    }
}

           
       
Related examples in the same category
1.Use Socket to read from whois.internic.net
2.Multicast Client
3.This finger client allows you to query a remote host.
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.