Reading from and Writing to a URLConnection





9
Date Submitted Thu. Apr. 6th, 2006 8:51 PM
Revision 1 of 2
Coder mattrmiller
Tags Java | Read | Stream | URLConnection | Write
Comments 0 comments
Reading and writing to a URL connection, thanks to Java.


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

public class URLConnectionReader {
    public static void main(String[] args) throws Exception {
        URL yahoo = new URL("http://www.yahoo.com/");
        URLConnection yc = yahoo.openConnection();
        BufferedReader in = new BufferedReader(
                                new InputStreamReader(
                                yc.getInputStream()));
        String inputLine;

        while ((inputLine = in.readLine()) != null)
            System.out.println(inputLine);
        in.close();
    }
}

 

Matthew R. Miller

www.bluecreststudios.com
=================
Matthew R. Miller

http://bluecreststudios.com
http://www.codeandcoffee.com

Comments

There are currently no comments for this snippet.

Voting