HttpURLConnection

HttpURLConnectionは、HTTP通信を行うためのクラス。
Androidでも以前やったが、もともとはJava標準用意されているもの。

HttpURLConnection (Java Platform SE 8)

GETで"http://bgstation0.com"にアクセスして、レスポンスを得る。

取得したレスポンスを出力すると、

<html>
  <head>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <title id="title_index">B.G-STATION</title>
  </head>
  <body id="body_index" bgcolor="#ffffff" text="#7700cc" link="0000ff" alink="ff0000" vli                                                                               nk="ff00ff">
    <div id="div_titleimage" align="center">
      <img src="http://www.geocities.co.jp/bg_sta/resource/image/title.png" width="460px"                                                                                height="140px" />
    </div>
    <div id="div_mainmenu" align="center">
      <div id="div_item_sample">
        <a href="sample/index.html">Sample</a>
      </div>
    </div>
  </body>
</html>

こうなる。

Sample/java/HttpURLConnection/HttpURLConnection/src/HttpURLConnection at master · bg1bgst333/Sample · GitHub