Java Stream Close closeProtectedStream(final OutputStream outputStream)

Here you can find the source of closeProtectedStream(final OutputStream outputStream)

Description

close Protected Stream

License

Apache License

Declaration

public static OutputStream closeProtectedStream(final OutputStream outputStream) 

Method Source Code

//package com.java2s;
/**// w w w.ja  va2  s.co m
 * Copyright 2010 the original author or authors.
 *
 * 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.IOException;

import java.io.OutputStream;

public class Main {
    public static OutputStream closeProtectedStream(final OutputStream outputStream) {
        return new OutputStream() {
            @Override
            public void write(int b) throws IOException {
                outputStream.write(b);
            }

            @Override
            public void close() throws IOException {
                // ignore
            }
        };
    }
}

Related

  1. closePort()
  2. closePrintWriter(PrintWriter fileOutputStream)
  3. closeProcess(Process process)
  4. closeProcessStreams(Process p)
  5. closeProofWriter(Writer out)
  6. closeQietly(ZipFile zipFile)
  7. closeQuietly(@Nullable ObjectInput in)
  8. closeQuietly(BufferedReader br)
  9. closeQuietly(Closeable input, Logger log)