Comments
kennyo wrote: Actually, Egenera's CEO is staying on as Board chairman. As the company transitions to be a multi-platform player, the feeling is to have management who are experts about software, the converged infrastructure market, and familiar with the players in the space. Ergo the new CEO, and ergo the new levels of backing from investors. The company is still hiring in its field and OEM spaces, and in conversations with multiple IHV partners.
Cloud Expo on Google News


2008 West
DIAMOND SPONSOR:
Data Direct
SOA, WOA and Cloud Computing: The New Frontier for Data Services
PLATINUM SPONSORS:
Red Hat
The Opening of Virtualization
GOLD SPONSORS:
Appsense
User Environment Management – The Third Layer of the Desktop
Cordys
Cloud Computing for Business Agility
EMC
CMIS: A Multi-Vendor Proposal for a Service-Based Content Management Interoperability Standard
Freedom OSS
Practical SOA” Max Yankelevich
Intel
Architecting an Enterprise Service Router (ESR) – A Cost-Effective Way to Scale SOA Across the Enterprise
Sensedia
Return on Assests: Bringing Visibility to your SOA Strategy
Symantec
Managing Hybrid Endpoint Environments
VMWare
Game-Changing Technology for Enterprise Clouds and Applications
Click For 2008 West
Event Webcasts

2008 West
PLATINUM SPONSORS:
Appcelerator
Get ‘Rich’ Quick: Rapid Prototyping for RIA with ZERO Server Code
Keynote Systems
Designing for and Managing Performance in the New Frontier of Rich Internet Applications
GOLD SPONSORS:
ICEsoft
How Can AJAX Improve Homeland Security?
Isomorphic
Beyond Widgets: What a RIA Platform Should Offer
Oracle
REAs: Rich Enterprise Applications
Click For 2008 Event Webcasts
SYS-CON.TV
Top Links You Must Click On


Reading Data from the Internet
Lesson 6, Java Basics

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 Director 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. He is an Adobe Certified Flex Instructor. Currently Yakov works on the book for O'Reilly "Enterprise Application Development with Flex". He twits at twitter.com/yfain.

In order to post a comment you need to be registered and logged in.

Register | Sign-in

Reader Feedback: Page 1 of 2

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

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

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!

I am very happy with your code, Yakov.
I tried it and everything works very well.
Thanks Ferruccio

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.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
urlConn.setDoOutput(true);

String myData = "myParam1=" + URLEncoder.encode ("abc") +
"&myParam2=" + URLEncoder.encode ("xyz");

DataOutputStream encodedParams = new DataOutputStream (urlConn.getOutputStream ());

encodedParams.writeBytes (myData);
encodedParams.flush ();
encodedParams.close ();

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.DataInputStream(c.getInputStream());
and so on.
How can you give the parameters to the cgi with THESE code lines?

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.http.HttpServlet {

public void doGet(HttpServletRequest req,
HttpServletResponse res)
throws ServletException, IOException {
String title;
PrintWriter out = res.getWriter();
title = req.getParameter("booktitle");
res.setContentType("text/html");

out.println("");

out.println("the book "+title+" costs only $65");

out.println("Please enter your credit card number");

out.println("");
}
}

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.

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.

I add to my above question: how can I pass the parameter values calling the URL?

What about reading a CGI URL accepting METHOD=POST parameters?

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.

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?

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/HttpURLConnection.
2) Set the system properties that control the socket timeouts for the Sun HTTP client.

Very useful, clear.


Feedback Pages:


Your Feedback
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
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
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!
Ferruccio Spagna wrote: I am very happy with your code, Yakov. I tried it and everything works very well. Thanks Ferruccio
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.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); urlConn.setDoOutput(true); String myData = "myParam1=" + URLEncoder.encode ("abc") + "&myParam2=" + URLEncoder.encode ("xyz"); DataOutputStream encodedParams = new DataOutputStream (urlConn.getOutputStream ()); encodedParams.writeBytes (myData); encodedParams.flush (); encodedParams.close ();
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.DataInputStream(c.getInputStream()); and so on. How can you give the parameters to the cgi with THESE code lines?
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.http.HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { String title; PrintWriter out = res.getWriter(); title = req.g...
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.
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.
Ferruccio Spagna wrote: I add to my above question: how can I pass the parameter values calling the URL?
Ferruccio Spagna wrote: What about reading a CGI URL accepting METHOD=POST parameters?
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.
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?
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/HttpURLConnection. 2) Set the system properties that control the socket timeouts for the Sun HTTP client.
John Pantone wrote: Very useful, clear.
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
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
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?
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();
Enterprise Open Source Magazine Latest Stories . . .
With ever-changing media consumption patterns and the rapid growth of mobile web, social networking, behavioral targeting, vodcasting, email marketing, and viral marketing it can be tough for any company to stay ahead of the competition. Which is why the organizers of iStrategy 2010, t...
Citrix Systems today announced the groundbreaking new “Pay-as-You-Grow” pricing for its Citrix NetScaler line of application acceleration, load balancing and web security appliances. Most networking systems require expensive hardware replacements to expand capacity and functionality, w...
Today, at the Microsoft Professional Developer Conference (PDC) here Los Angeles, Microsoft announced not only the release of version 4.0 of the.NET Micro Framework, but also that they are open sourcing the product and making it available under the Apache 2.0 license, which is already ...
SugarCRM today announced that it will offer its CRM applications on Windows Azure to enable its customers and value-added resellers to benefit from the real-time scalability, high availability and on-demand infrastructure of Microsoft Corp.’s cloud platform for web applications and ser...
Now we have a Eucalyptus' Private Cloud installed and running on our premise, and it remained kinda of an artifact in our data-center for sometime. So I thought why has not someone written anything about how make to make Elasticfox work with Eucalyptus. But there were quite a few point...
WSO2, the open source SOA company, today announced the launch of the WSO2 Cloud Platform. Available today, the new WSO2 Cloud Platform features a family of WSO2 Cloud Virtual Machines; WSO2 Cloud Connectors for enabling fast, secure cloud services; and the multi-tenant WSO2 Governance-...
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