javaによるHTTP接続サンプル
javaでHTTP接続するプログラムのサンプル。
// ①URLを生成
// ②接続してHttpURLConnectionを生成
HttpURLConnection con = (HttpURLConnection)new URL(url).openConnection();
// ③InputStreamからレスポンスをもらう
BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream(),"Shift-JIS"));
// ④まわす
while(br.ready()) {
System.out.println(br.readLine());
}
// ⑤とじる
con.disconnect();
br.close();