Java Stream Close closeStream(final java.io.Closeable stream)

Here you can find the source of closeStream(final java.io.Closeable stream)

Description

Closes the stream ignoring IOException .

License

Apache License

Parameter

Parameter Description
stream the stream to close

Declaration

public static void closeStream(final java.io.Closeable stream) 

Method Source Code


//package com.java2s;
/*/*from  w  w  w .ja v  a 2 s. com*/
 * 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.io.IOException;

import org.slf4j.Logger;

public class Main {
    /**
     * Closes the stream ignoring {@link IOException}. Must only be called in
     * cleaning up from exception handlers.
     * 
     * @param stream
     *        the stream to close
     */
    public static void closeStream(final java.io.Closeable stream) {
        cleanup(null, stream);
    }

    /**
     * Close the Closeable objects and <b>ignore</b> any {@link IOException} or
     * null pointers. Must only be used for cleanup in exception handlers.
     * 
     * @param log
     *        the log to record problems to at debug level. Can be <code>null</code>.
     * @param closeables
     *        the objects to close
     */
    public static void cleanup(final Logger log, final java.io.Closeable... closeables) {
        for (java.io.Closeable c : closeables) {
            if (c != null) {
                try {
                    c.close();
                } catch (IOException e) {
                    if (log != null && log.isDebugEnabled()) {
                        log.debug("Exception in closing " + c, e);
                    }
                }
            }
        }
    }
}

Related

  1. closeStream(Closeable... streams)
  2. closeStream(FileInputStream in)
  3. closeStream(final Closeable stream)
  4. closeStream(final InputStream in)
  5. closeStream(final InputStream stream)
  6. closeStream(final Object stream)
  7. closeStream(InputStream in)
  8. closeStream(InputStream in)
  9. closeStream(InputStream inputStream)