web-dev-qa-db-ja.com

java inputstream print to console the content

sock = new Socket("www.google.com", 80);
       out  = new BufferedOutputStream(sock.getOutputStream());
       in   = new BufferedInputStream(sock.getInputStream());

以下のように「in」内のコンテンツを印刷しようとすると

 BufferedInputStream bin = new BufferedInputStream(in);
 int b;
 while ( ( b = bin.read() ) != -1 )
 {

     char c = (char)b;         

     System.err.print(""+(char)b); //This prints out content that is unreadable.
                                   //Isn't it supposed to print out html tag?
 }
14
cometta

Webページのコンテンツを印刷する場合は、 [〜#〜] http [〜#〜] プロトコルを使用する必要があります。自分で実装する必要はありません。最良の方法は、Java API HttpURLConnection またはApacheの HttpClient などの既存の実装を使用することです。

HttpURLConnectionを使用してこれを行う方法の例を次に示します。

URL url = new URL("http","www.google.com");
HttpURLConnection urlc = (HttpURLConnection)url.openConnection();
urlc.setAllowUserInteraction( false );
urlc.setDoInput( true );
urlc.setDoOutput( false );
urlc.setUseCaches( true );
urlc.setRequestMethod("GET");
urlc.connect();
// check you have received an status code 200 to indicate OK
// get the encoding from the Content-Type header
BufferedReader in = new BufferedReader(new InputStreamReader(urlc.getInputStream()));
String line = null;
while((line = in.readLine()) != null) {
  System.out.println(line);
}

// close sockets, handle errors, etc.

上記のように、Accept-Encodingヘッダーを追加し、応答のContent-Encodingヘッダーを確認することで、トラフィックを節約できます。

これは、 ここ から取得したHttpClientの例です。

   // Create an instance of HttpClient.
    HttpClient client = new HttpClient();

    // Create a method instance.
    GetMethod method = new GetMethod(url);

    // Provide custom retry handler is necessary
    method.getParams().setParameter(HttpMethodParams.RETRY_HANDLER, 
            new DefaultHttpMethodRetryHandler(3, false));

    try {
      // Execute the method.
      int statusCode = client.executeMethod(method);

      if (statusCode != HttpStatus.SC_OK) {
        System.err.println("Method failed: " + method.getStatusLine());
      }

      // Read the response body.
      byte[] responseBody = method.getResponseBody();

      // Deal with the response.
      // Use caution: ensure correct character encoding and is not binary data
      System.out.println(new String(responseBody));

    } catch (HttpException e) {
      System.err.println("Fatal protocol violation: " + e.getMessage());
      e.printStackTrace();
    } catch (IOException e) {
      System.err.println("Fatal transport error: " + e.getMessage());
      e.printStackTrace();
    } finally {
      // Release the connection.
      method.releaseConnection();
    }  
19

Java 8 Stream APIを使用してストリームから文字列を作成するのは非常に簡単です:

new BufferedReader(new InputStreamReader(in)).lines().collect(Collectors.joining("\n"))

IntelliJを使用して、デバッグ式でこれを設定することもできます: enter image description here

Eclipseでも同様に機能すると思います。

2
gorefest

Webページのコンテンツを取得する場合は、これを自分でコーディングするのではなく、 Apache httpclient を確認する必要があります。学習目的や、その他の本当に正当な理由を期待してください。

1
Tim Büthe