|
hello,
here
is the code to get http page.
you
can write it were you want !
best
regards
//get
a connction
HttpURLConnection l_connection = (HttpURLConnection) l_url.openConnection(); l_connection.connect();
//open stream
from connection
l_urlStream = l_connection.getInputStream();
BufferedReader l_reader = new BufferedReader(new
InputStreamReader(l_urlStream));
//process lines
while ((l_sCurrentLine = l_reader.readLine()) != null) {
|
- How to put a internet page to a file. cgreen
- Re: How to put a internet page to a file. Joseph B. Ottinger
- Re: How to put a internet page to a file. -... Simon Peter Nicholls
- Stephane GINER
