Java Stream Close closeConnection(Closeable... closes)

Here you can find the source of closeConnection(Closeable... closes)

Description

close Connection

License

Open Source License

Declaration

static public void closeConnection(Closeable... closes) 

Method Source Code


//package com.java2s;
/*/*from ww  w.ja v  a 2  s.com*/
 * Copyright (C) 2014 a5834099147(lxd) <a5834099147@126.com>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.io.Closeable;
import java.io.IOException;

public class Main {
    static public void closeConnection(Closeable... closes) {
        for (Closeable close : closes) {
            try {
                if (close != null) {
                    close.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

Related

  1. closeAllStreamsQuietly(final Closeable... closeables)
  2. closeAndRethrow(final Exception e, final Closeable... channels)
  3. closeBufferedFile(BufferedReader reader)
  4. closeBufferedReader(BufferedReader bufferedReader)
  5. closeCloseableIfNotNull(Closeable fileWriter)
  6. closeDataLine(final SourceDataLine line, final AudioInputStream ais)
  7. closeDebugFile()
  8. closeEL(InputStream is)
  9. closeEntry(ZipOutputStream... outputStreams)