Re: How to put a internet page to a file. - Authentication

2000-12-21 Thread Simon Peter Nicholls
Joseph B. Ottinger wrote: > This has virtually nothing to do with Orion. > > However, you can do this in a LOT of ways: "Save As" from your browser, > you can use various mirroring tools, you could even use a URLConnection > from java.net.* and use one of the java.io classes to write it to your

RE: How to put a internet page to a file.

2000-12-21 Thread Stephane GINER
hello,   here is the code to get http page. you can write it were you want !   best regards         //create url object InputStream l_urlStream;     URL l_url = new URL(p_sUrl);   //get a connction HttpURLConnection l_connection = (HttpURLConnection) l_url.openConnection

Re: How to put a internet page to a file.

2000-12-21 Thread Joseph B. Ottinger
This has virtually nothing to do with Orion. However, you can do this in a LOT of ways: "Save As" from your browser, you can use various mirroring tools, you could even use a URLConnection from java.net.* and use one of the java.io classes to write it to your local filesystem... as well as a thou