Big Java example project "urlget"

You can use this project as follows:

 - invoke the main method of the driver class URLGet by 
 right-clicking on the class representation and selecting the main method.
 - you will need to provide 1 argument: the resource you want to get.
 - in BlueJ you provide arguments to the main method by initialising a String 
 array as the parameter to the main method.  For example:  
    {"http://java.sun.com/index.html"}
 
This project illustrates concepts covered in Big Java, Chapter 22 
"Internet Networking".
  
  - to understand the concept of sockets
 - to learn how to send and receive data through sockets
 - to implement network clients and servers
 - to communicate with web servers and server-side applications through Hypertext Transfer Protocol (HTTP)

