Example usage for java.io InputStream close

List of usage examples for java.io InputStream close

Introduction

In this page you can find the example usage for java.io InputStream close.

Prototype

public void close() throws IOException 

Source Link

Document

Closes this input stream and releases any system resources associated with the stream.

Usage

From source file:Main.java

private static void closeInputStream(InputStream in) {
    if (null != in) {
        try {//from  w ww.  j  a va 2 s  .c  o m
            in.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

From source file:Main.java

private static void closeInputStream(InputStream in) {
    if (null != in) {
        try {//from w w  w .  j  a v  a  2  s. com
            in.close();
        } catch (IOException e) {
            Log.v("BitMapUtil", "closeInputStream==" + e.toString());
        }
    }
}

From source file:Main.java

private static void closeInputStream(InputStream in) {
    if (null != in) {
        try {/* w w  w.  j a v a  2s.co  m*/
            in.close();
        } catch (IOException e) {
            Log.e("BitMapUtil", "closeInputStream==" + e.toString());
        }
    }
}

From source file:Main.java

public static void closeQuietly(InputStream in) {
    try {//from   w w  w  .  j  a  v  a 2  s  . c o  m
        if (in != null)
            in.close();
    } catch (IOException ignore) {
    }
}

From source file:Main.java

public static void closeInputStream(InputStream is) {
    if (is != null) {
        try {// ww  w  .jav  a 2s .c  o m
            is.close();
        } catch (IOException e) {
            //pass
        } finally {
            is = null;
        }
    }
}

From source file:Main.java

public static void close(InputStream is) {
    try {/*w  ww  . j a  v  a  2 s  .  c  om*/
        if (is != null)
            is.close();
    } catch (IOException e) {
        e.printStackTrace();
    }
}

From source file:Main.java

public static void close(InputStream is) {
    try {//from w  w w .ja v a 2s.c o  m
        if (is != null) {
            is.close();
        }
    } catch (Exception e) {
        // TODO: handle exception
    }
}

From source file:Main.java

public static void close(InputStream in) {
    if (in != null) {
        try {/* w  w  w.j a v  a  2 s. c o m*/
            in.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

From source file:Main.java

public static void closeInputStreamQuiet(InputStream input) {
    if (input == null)
        return;//from  w ww.java2s  .  co m
    try {
        input.close();
    } catch (IOException e) {
    }
}

From source file:Main.java

public static void closeStreamQuietly(InputStream inputStream) {
    try {//from w ww. jav a 2s  .  c o  m
        if (inputStream != null) {
            inputStream.close();
        }
    } catch (IOException e) {
        // ignore exception
    }
}