Home > Articles > Programming > Java

Networking in Java

This chapter is from the book

This chapter is from the book

HTTP and Web Browsing: Retrieving HTTP Pages

Here is an example of interacting with an HTTP server to retrieve a web page from a system on the network. This shows how easy it is to post information to HTML forms. Forms are covered in more depth in the chapter on servlets, and you may want to refresh your memory on that section.

For the impatient, HTML forms allow you to type some information in your browser which is sent back to the server for processing. The information may be encoded as part of the URL, or sent separately in name/value pairs.

The Yahoo site is a wide-ranging access portal. They offer online stock quotes that you can read in your browser. I happen to know (by looking at the URL field of my browser) that a request for a stock quote for ABCD is translated to a socket connection of:

http://finance.yahoo.com/q?s=abcd

That's equivalent to opening a socket on port 80 of finance.yahoo.com and sending a "get /q?s=abcd." You can make that self same request yourself, in either of two ways. You can open a socket connection to port 80, the http port. Or you can open a URL connection which offers a simpler, higher-level interface. We'll show both of these here. Here's the stock finder done with sockets:

import java.io.*;
import java.net.*;
public class Stock {

  public static void main(String a[]) throws Exception {
    if (a.length!=1) {
      System.out.println("usage: java Stock <symbol> ");
      System.exit(0);
    }

    String yahoo = "finance.yahoo.com";
    final int httpd = 80;
    Socket sock = new Socket(yahoo, httpd);

    BufferedWriter out =
        new BufferedWriter( new OutputStreamWriter(
 							sock.getOutputStream() ) );

    String cmd = "GET /q?" +"s=" +a[0] +"\n";
    out.write(cmd);
    out.flush();

	 BufferedReader in =new BufferedReader( 
		new InputStreamReader( sock.getInputStream() ) );
	 String s=null;
    int i, j;
	 // pick out the stock price from the pile of HTML
	 // it's in bold, so get the number following "<b>"
    while ( (s=in.readLine()) != null) {
       if (s.length()<25) continue;
       if ((i=s.indexOf(a[0].toUpperCase())) < 0) continue;
       s=s.substring(i);
       if ((i=s.indexOf("<b>")) < 0) continue;
       j = s.indexOf("</b>");
       s=s.substring(i+3,j);
       System.out.println(a[0] +" is at "+s);
       break;
    }
  }
}

The Yahoo page that returns stock quotes contains thousands of characters of hrefs to ads and formatting information. It consists of many HTML lines like this:

<a href="/q?s=SUNW&d=t">SUNW</a></td><td nowrap
 align=center>12:03PM</td><td nowrap><b>9.55</b></a>

Luckily it's fairly easy to pull out the stock price. From inspecting the output, it's on a line with more than 25 chars. The line contains the stock symbol rewritten in upper case. The number we want is bracketed by <b> ... </b>, which is the HTML to print the number in bold face.

Given all that, running the program provides this output:

java Stock ibm
ibm is at 101.26

It was a lot more fun running this program in the year 2000. Here is the same program, rewritten to use the classes URL and URLConnection. Obviously, URL represents a URL, and URLConnection represents a socket connection to that URL. The code to do the same work as before, but using URLConnection is:

import java.io.*;
import java.net.*;
public class Stock2 {

  public static void main(String a[]) throws Exception {
    if (a.length!=1) {
      System.out.println("usage: java Stock <symbol> ");
      System.exit(0);
    }

    String yahoo = "http://finance.yahoo.com/q";

    URL url = new URL(yahoo);
    URLConnection conn = url.openConnection();
    conn.setDoOutput(true);
    PrintWriter pw = new PrintWriter( conn.getOutputStream());
    pw.print("s=" + a[0]);
    pw.close();

    BufferedReader in = new BufferedReader( new InputStreamReader(
                         conn.getInputStream()));
    String s=null, stock=a[0].toUpperCase();
    int i=0,j=0;
    while ( (s=in.readLine()) != null) {
	   if (s.length()<25) continue;
       if ((i=s.indexOf(a[0].toUpperCase())) < 0) continue;
       s=s.substring(i);
       if ((i=s.indexOf("<b>")) < 0) continue;
       j = s.indexOf("</b>");
       s=s.substring(i+3,j);
       System.out.println(a[0] +" is at "+s);
       break;
    }
  }
}

The main difference here is that we form a URL for the site and file (script) that we want to reference. Then we open a connection to the URL, tell it that we are going to do output to it, and write the "name=value" parameter. We finish up as before, reading what the socket writes back and extracting the characters of interest. Clearly, this program will stop working when Yahoo changes the format of the page, but it demonstrates how we can use a URL and URLConnection for a slightly higher-level interface than a socket connection. We could even go one step further and use the class HttpURLConnection which is a subclass of URLConnection. Please look at the HTML documentation for information on these classes.

A URL can pose a security risk, since you can pass along information even by reading a URL. Requesting http://www.cia.gov/cgi-bin/cgi.exe/secretinfo passes "secretinfo" along to the CGI script, for example. Since requesting a URL can send out information just as a Socket can, requesting a URL has the same security model as access to Sockets. Namely, an applet can only open a socket connection back to the server from which the applet came. Security is also the reason that an applet may not open a socket connection to any other system except its server. Otherwise, it could look at information on its subnet behind the firewall, and send it back to crackers everywhere.

If you are behind a firewall (and who isn't these days?) you will need to tell Java the details of your proxy server and port in order to access hosts outside the firewall. You do this by defining properties, perhaps when starting the code:

java -DproxySet=true -DproxyHost=SOMEHOST -DproxyPort=SOMENUM code.java

Without this, you'll get an UnknownHostException. The proxy settings are needed for both java.net.URLConnection and for java.net.Sockets. At work, your systems administrator will know the values. At home, you won't be using a proxy server unless you set it up yourself.

How to Find the IP Address Given to a Machine Name

The class java.net.InetAddress represents IP addresses and about one dozen common operations on them. The class should have been called IP or IPAddress, but was not (presumably because such a name does not match the coding conventions for classnames). Common operations on IP addresses are things like: turning an IP address into the characters that represent the corresponding domain name, turning a host name into an IP address, determining if a given address belongs to the system you are currently executing on, and so on.

InetAddress has two subclasses:

Inet4Address

The class that represents classic, version 4, 32-bit IP addresses

Inet6Address

The class that represents version 6 128-bit IP addresses


Your programs will not use these classes directly very much, as you can create sockets using domain and host names. Further, in most of the places where a hostname is expected (such as in a URL), a String that contains an IP address will work equally well. However, if native code passes you an IP address, these classes give you a way to work on it.

The InetAddress class does not have any public constructors. Applications should use the methods getLocalHost(), getByName(), or getAllByName() to create a new InetAddress instance. The program that follows show examples of each of these.

This code will be able to find the IP address of all computers it knows about. That may mean all systems that have an entry in the local hosts table, or (if it is served by a name server) the domain of the name server, which could be as extensive as a large subnet or the entire organization.

import java.io.*;
import java.net.*;
public class addr {

  public static void main(String a[]) throws Exception {

    InetAddress me = InetAddress.getByName("localhost");
    PrintStream o = System.out;   
    o.println("localhost by name =" + me );

    InetAddress me2 = InetAddress.getLocalHost();
    o.println("localhost by getLocalHost =" + me2 );

    InetAddress[] many = InetAddress.getAllByName("microsoft.com");
    for (int i=0; i<many.length; i++) 
        o.println( many[i] );
  }
}

Run it with:

java addr

localhost by name =localhost/127.0.0.1
localhost by getLocalHost =zap/10.0.10.175
Microsoft: microsoft.com/207.46.230.218
Microsoft: microsoft.com/207.46.230.219
Microsoft: microsoft.com/207.46.197.100
Microsoft: microsoft.com/207.46.197.101
Microsoft: microsoft.com/207.46.197.102

The getAllByName() method reports all the IP addresses associated with a domain name. You can see from the output above that Microsoft.com, like most big sites, is served by multiple IP addresses, on two different subnets (probably for fault tolerance). Each of those five IP addresses probably represents load balancer hardware fanning out to dozens of server nodes.

Some Notes on Protocol and Content Handlers

Some of the Java documentation makes a big production about support for extending the MIME types known to browsers. If it is asked to browse some data whose type it doesn't recognize, it can simply download the code for the appropriate handler based on the name of the datetype and use that to grok the data. This is exactly what happens with plug-ins. If you stumble across a RealAudio file, the browser prompts you to download the plug-in that can play it. Java can make this completely automatic. Or so the theory runs. It hasn't yet been used much in practice.

The theory of the handlers is this. There are two kinds of handler that you can write: protocol handlers and content handlers.

A protocol handler talks to other programs. Both ends follow the same protocol in order to communicate structured data between themselves ("After you," "No, I insist—after you.") If you wrote an Oracle database protocol handler, it would deal with SQL queries to pull data out of an Oracle database.

A content handler knows how to decode the contents of a file. It handles data (think of it as the contents of something pointed to by a URL). It gets the bytes and assembles them into an object. If you wrote an MPEG content handler, it would then be able to play MPEG movies in your browser, once you had brought the data over there. Bringing MPEG data to your browser could be done using the FTP protocol, or you might wish to write your own high performance protocol handler.

Content handlers and protocol handlers may be particularly convenient for web browsers, and they may also be useful in stand-alone applications. There is not a lot of practical experience with these handlers in Java yet, so it is hard to offer definitive advice about their use. Some people predict they are going to be very important for decoding file formats of arbitrary kinds, while other people are ready to be convinced by an existence proof.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020