55 lines
1.2 KiB
Java
55 lines
1.2 KiB
Java
|
|
package com.tfq.library.utils;
|
||
|
|
|
||
|
|
import java.io.Closeable;
|
||
|
|
import java.io.IOException;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* <pre>
|
||
|
|
* author: Blankj
|
||
|
|
* blog : http://blankj.com
|
||
|
|
* time : 2016/10/09
|
||
|
|
* desc : 关闭相关工具类
|
||
|
|
* </pre>
|
||
|
|
*/
|
||
|
|
public final class CloseUtils {
|
||
|
|
|
||
|
|
private CloseUtils() {
|
||
|
|
throw new UnsupportedOperationException("u can't instantiate me...");
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 关闭 IO
|
||
|
|
*
|
||
|
|
* @param closeables closeables
|
||
|
|
*/
|
||
|
|
public static void closeIO(final Closeable... closeables) {
|
||
|
|
if (closeables == null) return;
|
||
|
|
for (Closeable closeable : closeables) {
|
||
|
|
if (closeable != null) {
|
||
|
|
try {
|
||
|
|
closeable.close();
|
||
|
|
} catch (IOException e) {
|
||
|
|
e.printStackTrace();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 安静关闭 IO
|
||
|
|
*
|
||
|
|
* @param closeables closeables
|
||
|
|
*/
|
||
|
|
public static void closeIOQuietly(final Closeable... closeables) {
|
||
|
|
if (closeables == null) return;
|
||
|
|
for (Closeable closeable : closeables) {
|
||
|
|
if (closeable != null) {
|
||
|
|
try {
|
||
|
|
closeable.close();
|
||
|
|
} catch (IOException ignored) {
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|