Java Stream Close close(DataOutputStream out)

Here you can find the source of close(DataOutputStream out)

Description

close

License

Apache License

Declaration

public static void close(DataOutputStream out) 

Method Source Code


//package com.java2s;
/*//  ww w .j av a2 s.  c om
 * Copyright 2000-2014 JetBrains s.r.o.
 *
 * Licensed 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.*;

public class Main {
    public static void close(DataOutputStream out) {
        if (out != null) {
            try {
                out.close();
            } catch (IOException ignored) {
            }
        }
    }
}

Related

  1. close(Closeable resource)
  2. close(Closeable resource, File file)
  3. close(Closeable stream)
  4. close(Closeable... streams)
  5. close(Collection inCloseables)
  6. close(File file)
  7. close(FileReader fr)
  8. close(FileReader reader, BufferedReader br)
  9. close(final Closeable resource, final String resourceId)