YOUR FEEDBACK
Adobe Flex 2 - Answering Tough Questions About Enterprise Development
A Correct Person wrote: Denis Roebrt commented on the 21 Aug 2006 "Tough Que...
SOA World Conference
Virtualization Conference
$50 Savings Expire May 23, 2008... – Register Today!

SYS-CON.TV
TOP THREE LINKS YOU MUST CLICK ON


Reading Data from the Internet
Lesson 6, Java Basics

Digg This!

To read local file streams, a program has to specify the file's location, i.e. "c:\practice\training.html". The same procedure is valid for reading of the remote files: just open the stream over the network. Java has a class URL that will help you to connect to a remote computer on the Internet.

At first, create an instance of the class URL:

try{
  URL xyz = new URL("http://www.xyz.com:80/training.html");
}
catch(MalformedURLException e){
      e.printStackTrace();
}

The MalformedURLException could be thrown if a non-valid URL has been used, for example missed protocol if you forgot to start URL with http://, extra spaces, etc. The MalformedURLException does not indicate that the remote machine has problems - just check the spelling of the URL.

Creation of the URL object does not establish the connection with the remote machine: you'll still need to open a stream to read it. Usually you have to perform the following steps to read a file from the Internet:

Step 1. Create and instance of the class URL

Step 2. Create an instance of the class URLConnection and open a connection using the URL instance from step 1.

Step 3. Get a reference to an input stream of this object by calling the method URLConnection.getInputStream()

Step 4. Read the data from the stream (use the buffered reader to speed up the process).

Since the streams from the package java.io are being used here for the read/write operations, you'll have to handle I/O exceptions.

The server you are trying to connect to has to be up and running and, in case of using http protocol, the special software (Web Server) has to be "listening to" the port that you specified in the URL instance. By default, Web servers are listening to the port number 80.

The program below reads and prints on the system console the content of the file index.html from yahoo.com. Obviously, to test this program your computer has to be connected to the Internet.

import java.net.*;
import java.io.*;
public class WebSiteReader {
  public static void main(String args[]){
       String nextLine;
       URL url = null;
       URLConnection urlConn = null;
       InputStreamReader  inStream = null;
       BufferedReader buff = null;
       try{
          // Create the URL obect that points
          // at the default file index.html
          url  = new URL("http://www.yahoo.com" );
          urlConn = url.openConnection();
         inStream = new InputStreamReader( 
                           urlConn.getInputStream());
           buff= new BufferedReader(inStream);
        
       // Read and print the lines from index.html
        while (true){
            nextLine =buff.readLine();  
            if (nextLine !=null){
                System.out.println(nextLine); 
            }
            else{
               break;
            } 
        }
     } catch(MalformedURLException e){
       System.out.println("Please check the URL:" + 
                                           e.toString() );
     } catch(IOException  e1){
      System.out.println("Can't read  from the Internet: "+ 
                                          e1.toString() ); 
  }
 }
}

The class WebSiteReader explicitly creates the URLConnection object. Strictly speaking we could get away just with the class URL:

URL url = new URL("http://www.yahoo.com");
InputStream in = url.getInputStream();
Buff= new BufferedReader(new InputStreamReader(in));

The reason why you may consider using the URLConnection class is that it could give you some additional control over the I/O process. For example, by calling its method setDoInput(true) you could allow (or disallow) downloads.

Connecting Through HTTP Proxy Servers

Most of the companies use firewalls for security reasons and their employees reach the Internet through the HTTP proxy server. Check the settings of your Internet browser to find out the host name and port number of the proxy server. If you are using Microsoft Internet Explorer check the menu Internet Options | Connections | LAN Setting. Netscape Navigator has proxy settings under Preferences | Advanced | Proxies.

While Java Applets know parameters of the proxy servers because they live inside the browser that has the proper settings, Java applications should set the parameters of the proxy server, for example:

   System.setProperty("http.proxyHost","xyz.com");
   System.setProperty("http.proxyPort", 8080);

If you do not want to hardcode these value, pass them to the program from the command line:

c:\practice>java -Dhttp.proxyHost=xyz.com  -Dhttp.proxyPort=8080  WebSiteReader

If you run this program without specifying the proxy settings, you'll get the UnknownHostException.

How to Download Files From the Internet

By using the class URL with input streams, we should be able to download practically any file (images, music, binary files) from the unsecured Internet site. The trick is in proper opening of the file stream. Let‚s write the class FileDownload that takes a URL and the file name as a command line arguments and copies remote file on your local disk.

import java.io.DataOutputStream;
import java.io.FileOutputStream;
import java.io.DataInputStream;
import java.net.URL;
import java.net.URLConnection;

class FileDownloader{

  public static void main(String args[]){
    if (args.length!=2){
      System.out.println(
        "Proper Usage: java FileDownloader RemoteFileURL LocalFileName");
      System.exit(0);
    }

  DataInputStream in=null;
  DataOutputStream out=null;
  FileOutputStream fOut=null;

  try{
    URL remoteFile=new URL(args[0]);
    URLConnection fileStream=remoteFile.openConnection();

    // Open the input streams for the remote file 
    fOut=new FileOutputStream(args[1]);

    // Open the output streams for saving this file on disk
    out=new DataOutputStream(fOut);

    in=new DataInputStream(fileStream.getInputStream());

    // Read the remote on save save the file
    int data;
    while((data=in.read())!=-1){
         fOut.write(data);
    }  
    System.out.println("Download of " + args[0] + " is complete." );   
  } catch (Exception e){
     e.printStackTrace();
  } finally {
     try{
       in.close();
       fOut.flush(); 
       fOut.close();      
     } catch(Exception e){e.printStackTrace();}
     
    }
 }
}

To download the Yahoo's main page into c:\temp directory start this program as follows:

java FileDownloader http://www.yahoo.com/index.html c:\\temp\\yahoo.html

The Stock Quote Program

In this section we'll write the program that can read stock market quotes from the Internet. There are many Internet sites providing stock market quotes, and 20 minutes delayed quotes are free. Wall Street companies subscribe for the real-time market data feed. One of the popular Internet sites is Yahoo and the URL for getting stock prices is http://finance.yahoo.com Point your Web browser to this site and get the price quote of any stock symbol. Note the URL of the resulting Web page in your browser. For example, if you've selected the symbol IBM, the URL would look like this:

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

Right click on this page and select the View Source from the popup menu to see the HTML contents of this page: you'll see lots of HTML tags and the information about the IBM's trading will be buried somewhere deep inside the file:


...
   Last Trade:</TD><TD class=yfnc_tabledata1><BIG><B>95.32</B>
...

The next step is to modify the URL in our class WebSiteReader to print the content of the page about the symbol IBM:

    url  = new URL("http://finance.yahoo.com/q?s=IBM");

You can also store the whole page in a Java String variable instead of printing it. Just change the while loop to look as follows:

        String theWholePage;
        while (txt =buff.readLine() != null ){
             theWholePage=theWholePage + txt;
         }

If you add some smart tokenizing of theWholePage to get rid of all HTML tags and everything but Last Trade value, you can create your own little GUI Stock Quote screen. While this approach is useful to sharpen you tokenizing skills, it may not be the best solution, especially if Yahoo will change the wording of this page. That's why we'll be using another Yahoo's URL that provide stock quotes in a cleaner comma separated values format (CSV).

Here's the URL that should be used for the IBM's symbol:

http://quote.yahoo.com/d/quotes.csv?s=IBM&f=sl1d1t1c1ohgv&e=.csv

This URL would produce a string that looks something like this (the price quotes are not real):

"IBM",95.32,"1/16/2004","5:01pm",+1.30,95.00,95.35,94.71,9305000

The next class StockQuoter prints the price quote for the symbol that is specified as a command line argument.

import java.net.*;
import java.io.*;
import java.util.StringTokenizer;

public class StockQuoter {
       String csvString;
       URL url = null;
       URLConnection urlConn = null;
       InputStreamReader  inStream = null;
       BufferedReader buff = null;

     StockQuoter(String symbol){

       try{
           url  = new              
               URL("http://quote.yahoo.com/d/quotes.csv?s="
                   + symbol + "&f=sl1d1t1c1ohgv&e=.csv" );
           urlConn = url.openConnection();
           inStream = new
               InputStreamReader(urlConn.getInputStream());
           BufferedReader buff= new BufferedReader(inStream);

           // get the quote as a csv string
           csvString =buff.readLine();  

           // parse the csv string
              StringTokenizer tokenizer = new
                          StringTokenizer(csvString, ",");
              String ticker = tokenizer.nextToken();
              String price  = tokenizer.nextToken();
              String tradeDate = tokenizer.nextToken();  
              String tradeTime = tokenizer.nextToken();  

              System.out.println("Symbol: " + ticker + 
                " Price: " + price + " Date: "  + tradeDate 
                + " Time: " + tradeTime);
     } catch(MalformedURLException e){
         System.out.println("Please check the spelling of the URL:" 
         		           + e.toString() );
     } catch(IOException  e1){
      System.out.println("Can't read from the Internet: " + 
                                           e1.toString() ); 
     }
     finally{
         try{
           inStream.close();
           buff.close();   
         }catch(Exception e){
            e.printStackTrace();
         }
     }  
   } 

  public static void main(String args[]){
       if (args.length==0){
          System.out.println(
                     "Sample Usage: java StockQuoter IBM");
          System.exit(0);
       } 
       StockQuoter sq = new StockQuoter(args[0]);
  }

}

To see the latest price of IBM stock start the StockQuoter program as follows:

c:\practice>java StockQuoter IBM

In this lesson I tried to show you that working with the streams over the net may be as simple as dealing with files on your local disk. These days Java runs remote-controlled Mars rovers, and this is not a rocket science anymore - just open a Java stream that points at Mars.

About Yakov Fain
Yakov Fain is a managing principal of Farata Systems, consulting, training and product company. He has authored several Java books, dozens of technical articles. SYS-CON Books released his latest co-authored book , "Rich Internet Applications with Adobe Flex and Java: Secrets of the Masters" in Spring 2007. Sun Microsystems has nominated and awarded Yakov with the title Java Champion. He leads the Princeton Java Users Group. Yakov teaches Java and Flex 2 part time at New York University. He is an Adobe Certified Flex Instructor and an Editor-in-Chief of Flex Developers Journal.

Dave Mason wrote: Hello Yakov, how can I read data in real time from java applet for example: http://www.saxobank.com/? id=911&Lan=EN&Au=1&Grp=5
read & respond »
nitin wrote: hi, can any one tell me how can i read the parameters from URL that has been passed by someone ie id someone send id=123 then how can i get it,how the whole process work & last but the mostimp i want to do whole thing through core java. Bye
read & respond »
MIchael Behrens wrote: Great Article! Keep''m coming! There is also a good WebCopy implementation at: http://www.acme.com/java/ software/ It makes all the web references local - It does not work on HTTPS - I wish I had all the know-how & code to make an equivalent HTTPS WebSiteReader, which would be very handing for testing our query pages. Thanks!
read & respond »
Ferruccio Spagna wrote: I am very happy with your code, Yakov. I tried it and everything works very well. Thanks Ferruccio
read & respond »
Yakov Fain wrote: In this lesson I do this using HTTP GET request by attaching parameters to the URL after a question mark separated with an ampersand. Fo HTTP POST, after getting the URLConnection stream, do something like this: urlConn.setRequestPro perty("Content-Type", "ap plication/x-www-form-urle ncoded"); urlConn.set DoOutput(true); String myData = "myParam1=" + URLEncoder.encode ("abc") + "&myParam2=" + URLEncoder.encode ("xyz"); DataOutputStream encodedParams = new DataOutputStream (urlConn.getOutputStream ()); encodedParams.writeBytes (myData); encodedParams.flush (); encodedParams.close ();
read & respond »
Ferruccio Spagna wrote: Ok. What you say occurs when you have a page with a form. Well known. But my question was: you want to read the stream (see your last article) and perhaps manipulate it. You then use the code: java.net.URL url = new java.net.URL("http:// www.cgi.com"); java.net.URLConnection c = url.openConnection(); java.io.DataInputStream dis = new java.io.DataInp utStream(c.getInputStream ()); and so on. How can you give the parameters to the cgi with THESE code lines?
read & respond »
Yakov Fain wrote: Well, here''s the sample from my book "The Java Tutorial for the Real World". 1. An HTML form has 2 fields to perform a book search: Find a book Enter a word from the book title:
2. The servlet FindBooks runs on the server side, gets the parameters and sends back to the browser a page that reads that this book cost $65: public class FindBooks extends javax.servlet.htt p.HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { String title; Print...
read & respond »
Ferruccio Spagna wrote: Thank you for your answer. I have several good Java books, but I didn''t find how I can read a CGI URL stream passing POST parameters in the calling instruction anywhere. Tell me please in a few words the way, if it is possible.
read & respond »
Yakov Fain wrote: Ferruccio, Java Servlets and JavaServer Pages technologies deal with HTTP Post and Get requests, parameters, etc. Wait for my lesson on servlets, or get a good book if you need to know the answer now.
read & respond »
Ferruccio Spagna wrote: I add to my above question: how can I pass the parameter values calling the URL?
read & respond »
Ferruccio Spagna wrote: What about reading a CGI URL accepting METHOD=POST parameters?
read & respond »
Yakov Fain wrote: Dennis, You can run on the remote machine one of the following: RMI server, SocketServer, a Servlet,FTP server... that has to create an instance of the class java.io.File that points at your directory. The File.list() will return the list of files in this directory as a String array. Now create instances of File for each of the array elements and call File.lastModify() to check the timestamp. After finding the file with the proper date, send its URL (or a stream reference) to the client for reading.
read & respond »
Dennis Christopher wrote: I found the article useful, and above average in clarity. I am wondering if anyone knows how you set up the connection to download an (entire) directory of files? and to check the file dates before doing so?
read & respond »
Josh Davis wrote: Yakov, You should mention that HttpURLConnection may ''hang'' when contacting servers that don''t behave correctly. This can cause a lot of problems in a server side application. The solutions are: 1) Use something other than URL/URLConnection/Ht tpURLConnection. 2) Set the system properties that control the socket timeouts for the Sun HTTP client.
read & respond »
John Pantone wrote: Very useful, clear.
read & respond »
Yakov Fain wrote: If the proxy requires authentication, set the following properties: System.setProperty("http. proxyUser", "JLarkin"); System.setProperty("http. proxyPassword", "YourPassword"); You may also try using the class java.net.Authenticator
read & respond »
John Larkin wrote: Our proxy server requires a user_id and password. I am having trouble finding a method to set these. Any ideas ? Thanks
read & respond »
Selvan Rajan wrote: What would be the case to deal with cookies from some of the web sites? Especially it becomes cumbersome, if there is a redirection involved after setting the cookie. Any ideas?
read & respond »
Debashish wrote: In the following para : Strictly speaking we could get away just with the class URL: URL url = new URL("http:/ /www.yahoo.com"); InputStream in = url.getInputStream(); Buff= new BufferedReader(new InputStreamReader(in)); I think the second line of code should be : InputStream in = url.openStream();
read & respond »
WEBSPHERE LATEST STORIES . . .
3rd International Virtualization Conference & Expo: Themes & Topics
From Application Virtualization to Xen, a round-up of the virtualization themes & topics being discussed in NYC June 23-24, 2008 by the world-class speaker faculty at the 3rd International Virtualization Conference & Expo being held by SYS-CON Events in The Roosevelt Hotel, in midtown
IBM Unveils Insurance Operations of the Future Powered By SOA
IBM announced two new advances in the insurance industry - a solution for improving operational efficiency and a framework for process acceleration - that are designed to help insurance providers lower costs and increase customer satisfaction by handling core processes, such as claims
ParAccel Announces OEM Relationship with IBM
ParAccel announced it has entered into an original equipment manufacturer (OEM) agreement with IBM. Under the terms of the agreement, ParAccel will embed IBM InfoSphere Change Data Capture within the ParAccel Analytic Database, providing ParAccel customers with seamless and real-time u
Microsoft To Keynote 4th International Virtualization Conference & Expo
Mike Neil is general manager for virtualization strategy in the Windows Server Division at Microsoft. Mike is focused on the delivery of the Windows virtualization technology, including Windows Server 2008 Hyper-V, Microsoft Hyper-V Server and Virtual PC 2007. Mike also directs the tec
Micro Focus Upgrades SOA Express for IBM CICS
Micro Focus announced the availability of SOA Express 8.0. The new version adds support for direct deployment into IBM's Customer Information Control System (CICS), enabling users to accelerate the deployment of Web services by reusing their existing CICS TS mainframe infrastructure in
Red Hat Named "Platinum Sponsor" of Virtualization Conference & Expo
Red Hat is a trusted open source provider. Red Hat offers enterprise customers a long-term plan for building infrastructures on the quality and innovation of open source. Combining open source operating system platform, Red Hat Enterprise Linux, together with applications, management
SUBSCRIBE TO THE WORLD'S MOST POWERFUL NEWSLETTERS
SUBSCRIBE TO OUR RSS FEEDS & GET YOUR SYS-CON NEWS LIVE!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021

SYS-CON FEATURED WHITEPAPERS

ADS BY GOOGLE
BREAKING WEBSPHERE NEWS
Company Profile for BrightStar Partners, Inc.
BrightStar Partners, a professional services and implementation-based solutions company,