JavaA2Z

KAB-studio > プログラミング > JavaA2Z > HttpURLConnectionとは

HttpURLConnection

日本語 超文書定型資源位置表示接続
英語 Hypertext transfer protocol Uniform Resource Locator connection
ふりがな えっちてぃーてぃーぴーゆーあーるえるこねくしょん、えいちてぃーてぃーぴーゆーあーるえるこねくしょん
フリガナ エッチティーティーピーユーアールエルコネクション、エイチティーティーピーユーアールエルコネクション

解説

J2SEに含まれるクラスのひとつ。パッケージも含めたクラス名java.net.HttpURLConnection

ホームページにアクセスするためのクラス
java.net.URLクラスでアクセスするURLを指定し、そのopenConnection()メソッド呼び出すことで得られるURLConnectionクラスをHttpURLConnectionクラスダウンキャストすることで取得する。
setRequestMethod()メソッドHTTPメソッドを指定し、getInputStream()メソッド呼び出すことでストリームクラスを取得できるため、これを用いてホームページを取得する。

(KAB-studioからのおしらせです)

サンプルプログラム(とか)サンプルを別ウィンドウで表示サンプルをクリップボードへコピー(WindowsでIEの場合のみ)

// Sample.java
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.HttpURLConnection;

public class Sample
{
    public static void main( String[] args )
    {
        BufferedReader bufferedReader = null;
        HttpURLConnection httpURLConnection = null;
        try
        {
            // プロトコル。
            String protocol = "http";
            // ホストを示すドメイン名。
            String host = "www.yahoo.co.jp";
            // ポート番号。
            int port = 80;
            // ファイルパス。
            String filePath = "/index.html";

            // アクセスするためのURLクラスを作ります。
            URL url = new URL( protocol, host, port, filePath );
            System.out.println( url.toString() );
            // http://www.yahoo.co.jp:80/index.html

            // Content-Typeの文字コード(注:実際には、HEADで文字コードを取得してから指定します)。
            String charSet = "EUC-JP";
            // リクエストのメソッド。
            String method = "GET";

            // 指定されたURLを元にリクエストを発行します。
            httpURLConnection = (HttpURLConnection)url.openConnection();
            httpURLConnection.setRequestMethod( method );

            // リクエストの結果を取得します。
            InputStreamReader inputStreamReader = new InputStreamReader( httpURLConnection.getInputStream(), charSet );
            bufferedReader = new BufferedReader( inputStreamReader );

            // 全行出力します。
            while( true )
            {
                String oneLine = bufferedReader.readLine();
                if( oneLine == null )
                {
                    break;
                }
                System.out.println( oneLine );
            }
            // <html>
            // <head>
            // <title>Yahoo! JAPAN</title>
            // (以下略)
        }
        catch( IOException e )
        {
            e.printStackTrace();
        }
        finally
        {
            if( bufferedReader != null )
            {
                try
                {
                    bufferedReader.close();
                }
                catch( IOException e )
                {
                    e.printStackTrace();
                }
            }

            if( httpURLConnection != null )
            {
                httpURLConnection.disconnect();
            }
        }
    }
}
// Sample.java
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.HttpURLConnection;

public class Sample
{
    public static void main( String[] args )
    {
        BufferedReader bufferedReader = null;
        HttpURLConnection httpURLConnection = null;
        try
        {
            // プロトコル。
            String protocol = "http";
            // ホストを示すドメイン名。
            String host = "www.yahoo.co.jp";
            // ポート番号。
            int port = 80;
            // ファイルパス。
            String filePath = "/index.html";

            // アクセスするためのURLクラスを作ります。
            URL url = new URL( protocol, host, port, filePath );
            System.out.println( url.toString() );
            // http://www.yahoo.co.jp:80/index.html

            // Content-Typeの文字コード(注:実際には、HEADで文字コードを取得してから指定します)。
            String charSet = "EUC-JP";
            // リクエストのメソッド。
            String method = "GET";

            // 指定されたURLを元にリクエストを発行します。
            httpURLConnection = (HttpURLConnection)url.openConnection();
            httpURLConnection.setRequestMethod( method );

            // リクエストの結果を取得します。
            InputStreamReader inputStreamReader = new InputStreamReader( httpURLConnection.getInputStream(), charSet );
            bufferedReader = new BufferedReader( inputStreamReader );

            // 全行出力します。
            while( true )
            {
                String oneLine = bufferedReader.readLine();
                if( oneLine == null )
                {
                    break;
                }
                System.out.println( oneLine );
            }
            // <html>
            // <head>
            // <title>Yahoo! JAPAN</title>
            // (以下略)
        }
        catch( IOException e )
        {
            e.printStackTrace();
        }
        finally
        {
            if( bufferedReader != null )
            {
                try
                {
                    bufferedReader.close();
                }
                catch( IOException e )
                {
                    e.printStackTrace();
                }
            }

            if( httpURLConnection != null )
            {
                httpURLConnection.disconnect();
            }
        }
    }
}

この単語を含むページ

「みだし」に含まれているページ

「解説」に含まれているページ

「サンプルプログラムとか」に含まれているページ

はてなブックマーク 詳細を表示 はてなブックマーク ブックマーク数
livedoorクリップ 詳細を表示 livedoorクリップ ブックマーク数
Yahoo!ブックマーク 詳細を表示 users
del.icio.us 登録する RSSに登録
サンプルを別ウィンドウで表示
サンプルをクリップボードへコピー(WindowsでIEの場合のみ)
update:2005/09/22
このページは、Javaプログラミング言語についての用語を網羅した辞書「JavaA2Z」の一ページです。
詳しくは「JavaA2Z」表紙の説明をご覧ください。