Java HTTP Close closeQuietly(HttpURLConnection connection)

Here you can find the source of closeQuietly(HttpURLConnection connection)

Description

Closes all streams of the connection, and disconnects it.

License

Apache License

Declaration

public static void closeQuietly(HttpURLConnection connection) 

Method Source Code

//package com.java2s;
/*/*from w w w .ja va  2s. c  o  m*/
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

import java.net.HttpURLConnection;

public class Main {
    /**
     * Closes all streams of the connection, and disconnects it. Ignores all exceptions completely,
     * not even logging them!
     */
    public static void closeQuietly(HttpURLConnection connection) {
        try {
            connection.disconnect();
        } catch (Exception e) {
        }
        try {
            connection.getInputStream().close();
        } catch (Exception e) {
        }
        try {
            connection.getOutputStream().close();
        } catch (Exception e) {
        }
        try {
            connection.getErrorStream().close();
        } catch (Exception e) {
        }
    }
}

Related

  1. close(URLConnection conn)
  2. close(URLConnection connection)
  3. closeAll(HttpURLConnection httpURLConnection, Writer writer, OutputStream outputStream)
  4. closeConnection(final HttpURLConnection connection)
  5. closeHttpUrlConnectionNoException(HttpURLConnection... closeables)
  6. closeQuietly(HttpURLConnection connection, Reader reader)
  7. closeQuietly(URLConnection cnn)
  8. closeSilently(HttpURLConnection resource)