All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.krysalis.barcode4j.tools.IOUtil Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2008 Jeremias Maerki.
 *
 * 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.
 */

/* $Id: IOUtil.java,v 1.2 2010/10/05 06:54:31 jmaerki Exp $ */

package org.krysalis.barcode4j.tools;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.Reader;

/**
 * Utility functions for I/O operations.
 */
public class IOUtil {

    /**
     * Copies the contents of an InputStream to an OutputStream.
     * @param in the input stream
     * @param out the output stream
     * @throws IOException if an I/O error occurs
     */
    public static void copy(InputStream in, OutputStream out) throws IOException {
        byte[] buf = new byte[1024];
        int n = 0;
        while (-1 != (n = in.read(buf))) {
            out.write(buf, 0, n);
        }
    }

    /**
     * Closes an {@link InputStream}. It ignores any exceptions happening while closing the
     * stream.
     * @param in the input stream
     */
    public static void closeQuietly(InputStream in) {
        try {
            in.close();
        } catch (IOException ioe) {
            //ignore
        }
    }

    /**
     * Closes a {@link Reader}. It ignores any exceptions happening while closing the
     * stream.
     * @param reader the reader
     */
    public static void closeQuietly(Reader reader) {
        try {
            reader.close();
        } catch (IOException ioe) {
            //ignore
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy