Re: copying a web site to a text file in java?

From: Chris (sarge_chris_at_hotmail.com)
Date: 12/10/03


Date: 10 Dec 2003 01:53:37 -0800

Check out the URL and URLConnection classes in java.net, you use them
to open a connection to a web-site and can then open an input-stream
to read the contents.

If you want to examine a web-site programatically (e.g. extract
tables, submit forms, etc) have a look at HttpUnit.

- sarge