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

Netrand Project

*

Software Engineering - CS536

*

University of Wisconsin - Milwaukee

*

Authors:

* *
File: DownloadEntropy.java *
*

* */ public class DownloadEntropy { public static void main( String[] args ) { try { Downloader dloader = new Downloader(); while (true) dloader.getEntropy( "http://random.yahoo.com/bin/ryl/" ); } catch ( Exception e ) { System.err.println(e); } System.exit(1); } }