sitelink1 http://www.go4expert.com/forums/showthread.php?t=6529 
sitelink2  
sitelink3 http://1 
sitelink4 http://ko 
sitelink5  
sitelink6 http://sitelink1 

Java's networking classes enable you to implement applications that communicate across a network/remote connection, but the platform also extends into the realm of the Internet and URLs. Java's URL class makes accessing Web resources as easy as accessing a local file. Let's take a look at how you can tap into the power of the URL class and read and write data over URL connections.
 

Working With URLs



A URL identifies resources such as files, Web pages, and Web applications that exist on the Web. It consists of a number of syntactic elements. For example, note the following URL:

http://www.go4expert.com:1234/mywebapps/JavaApp

The protocol element is identified as http. The host name is www.go4expert.com. The port number is 1234. The rest of the URL, /mywebapps/JavaApp, identifies the resource to be accessed on the site. The resource, in this case, happens to be a Web application. URLs can also include other elements, such as fragments and query strings.

Data that is retrieved from a URL can be diverse, which necessitates a uniform mechanism for reading from and writing to URLs. Java offers such a mechanism in its java.net package. The specific class from this package that we want to discuss is the URL class.

The URL class is an abstraction of the URL identifier. It allows a Java programmer to open a connection to a specific URL, read data from it, write data to it, read and write header information, and perform other operations on the URL. We will discuss how the URL class and the stream classes provided by the java.io package allow you to operate on a URL in much the same manner that you operate on files and socket connections.
 

Constructors



When creating an instance of the java.net.URL class, you can take advantage of a number of public constructors to gain flexibility. For example, the class offers a constructor that takes a complete URL string, a constructor that takes a URL string that is broken up into protocol, host, and file/resource, and a constructor that takes a URL string that is broken up into protocol, host, port, and file. Let's construct an instance of the URL class using a complete URL:
 

Code:

    URL aURL = new URL("http://www.go4expert.com:1234/mywebapps/JavaApp");
    

In this example, an instance of the URL class is created with a complete URL that designates the protocol as http, the host as www.go4expert.com, the port as 1234, and the file/resource as mywebapps/JavaApp. Each of the constructors of the URL class throw a MalformedURLException in the event that the arguments passed in form a URL that is syntactically incorrect.
 

Opening An URL Connection



Once you have successfully created an instance of the URL class, you can begin to call operations on it. But before you can access the resource or content represented by the URL, you must open a connection to it. You can do this with the openConnection method call.

The openConnection method takes no parameters and, on success, returns an instance of the URLConnection class. Snippet A demonstrates the process of opening a connection to a URL. Once you have a successful connection, you can begin reading and writing to the input and output streams of the URLConnection instance.

Snippet A

Code:

    import java.net.*;
    import java.io.*;
    
    public void openURLConnection()
    {
        try
        {
            URL url = new URL("http://www.go4expert.com");
            URLConnection connection = url.openConnection();
        }
        catch (Exception e)
        {
            System.out.println(e.toString());
        }
    }
    

Reading From An URL



Using the java.io stream classes to read from a URL is a simple process. Once you have a successful connection, you can retrieve the input stream for the connection and begin reading. URLs can represent resources consisting of a wide variety of data formats. Fortunately, the java.io classes can operate on data returned from URLConnection streams in the same fashion that they operate on file streams or socket streams. Snippet B shows how to read text data from a URL.

Snippet B

Code:

    import java.net.*;
    import java.io.*;
    
    public void readFromURL()
    {
        try
        {
            URL url = new URL("http://www.go4expert.com");
            URLConnection connection = url.openConnection();
            connection.setDoInput(true);
            InputStream inStream = connection.getInputStream();
            BufferedReader input =
            new BufferedReader(new InputStreamReader(inStream));
    
            String line = "";
            while ((line = input.readLine()) != null)
            System.out.println(line);
        }
        catch (Exception e)
        {
            System.out.println(e.toString());
        }
    }
    

Writing To An URL



It's also simple to write to a URL using the java.io stream classes. Once you have a successful connection, you can retrieve the output stream for the connection and begin writing. Of course, it only makes sense to write to a connection that is expecting data from a client. Also, before retrieving and writing to a URLConnection stream, you need to designate the connection as being write-enabled by setting the Output property to true using the setDoOutput(boolean) method. The java.io classes allow you to write data to URLConnection streams just as you write to file streams or socket streams. Snippet C demonstrates how to write object data to a URL.

Snippet C

Code:

    import java.net.*;
    import java.io.*;
    
    public void writeToURL()
    {
        try
        {
            URL url = new URL("http://www.go4expert.com");
            URLConnection connection = url.openConnection();
            connection.setDoOutput(true);
            OutputStream outStream = connection.getOutputStream();
            ObjectOutputStream objectStream = new ObjectOutputStream(outStream);
            objectStream.writeInt(54367);
            objectStream.writeObject("Hello there");
            objectStream.writeObject(new Date());
            objectStream.flush();
        }
        catch (Exception e)
        {
            System.out.println(e.toString());
        }
    }
    

Other Operations



You can retrieve other types of information from URL and URLConnection objects, such as the host, port, content length, content encoding, and content type. Using these methods along with the stream I/O classes enables you to build sophisticated Web client applications and services.
 

Easy Access To The Web



The URL class provided by the Java platform enables you to access Web resources with the same power and ease you enjoy when accessing a local file. You don't have to worry about the details of Web communication and can concentrate instead on building useful applications and services around Web resources.

번호 제목 글쓴이 날짜 조회 수
163 서블릿 응답 헤더(Response Header) 황제낙엽 2009.09.17 461
162 같은 문자열인데도 정규식에서 해당 문자열을 파싱하지 못하는 경우 황제낙엽 2009.08.08 367
161 MultipartRequest (cos.jar)와 서블릿을 이용한 업로드 file 황제낙엽 2009.06.19 651
160 [대용량 파일 업로드] multipart form parser - http file upload, database 저장 java class 연재2 file 황제낙엽 2009.06.19 2231
159 [대용량 파일 업로드] multipart form parser - http file upload 기능 java class 연재1 file 황제낙엽 2009.06.19 1678
158 [reflection/리플렉션] Class.forName 황제낙엽 2009.05.27 468
157 문자열 내의 공백을 제거하는 간단한 정규식 황제낙엽 2009.05.20 399
156 문자열에서 특수 문자 (Escape Sequence) 처리 file 황제낙엽 2009.02.20 1633
155 정규표현식을 사용하는 String클래스의 replaceAll() 함수 개량 황제낙엽 2009.02.09 507
154 File 복사 함수 황제낙엽 2009.02.08 412
153 JSP session 정보 얻기 황제낙엽 2009.01.21 437
152 서버상의 로컬경로 (실제경로) 관련 환경변수 황제낙엽 2009.01.21 634
151 java.net.URL 생성시 로컬 파일에 접근 황제낙엽 2009.01.20 371
150 자바로 구현하는 Web-to-web 프로그래밍 황제낙엽 2009.01.20 425
» Using Java's Net::URL Class To Access URLs (java.net.URL) 황제낙엽 2009.01.20 581
148 입력받은 문자열의 의미가 숫자인지 단순 텍스트인지 판별해야 할 때 황제낙엽 2009.01.09 373
147 사용팁 황제낙엽 2008.07.24 296
146 문자열 처리 - StringTokenizer 와 String.split() 황제낙엽 2008.07.08 462
145 숫자의 형식화 #1(Part-1)-java.text.NumberFormat 황제낙엽 2008.07.08 296
144 숫자 에 대응 되는 문자의 형식화 #2 황제낙엽 2008.07.08 342