-
Notifications
You must be signed in to change notification settings - Fork 0
/
GetHTML.java
38 lines (34 loc) · 1.21 KB
/
GetHTML.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import java.io.*;
import java.net.URL;
public class GetHTML {
public static void main(String[] args) {
URL url = null;
try {
// 「URL情報」を保持するURLオブジェクトの生成
url = new URL("http://httpbin.org/get");
} catch (Exception e) {
e.printStackTrace();
}
try (
// URLオブジェクトによるバイトストリームの生成
InputStream is = url.openStream();
// バイトストリーム -> 文字ストリーム への変換を行うInputStreamReaderフィルタの生成
InputStreamReader isr = new InputStreamReader(is);
// 「バッファリング」を行うBufferedReaderフィルタの生成
BufferedReader br = new BufferedReader(isr);
) {
// HTML情報の取得・コンソールへの出力
String html = br.readLine();
while (!(html.equals(null))) {
System.out.println(html);
html = br.readLine();
}
}
catch (NullPointerException e) {
return;
}
catch (Exception e) {
e.printStackTrace();
}
}
}