ThreadLocal 在使用它们的线程死亡后关闭。如果你想控制这个,你需要使用地图。
// do our own thread local resources which close when we want.
Map<Thread, Resource> threadLocalMap = new ConcurrentHashMap<>();
fj.submit(
() -> myStream.parallel().forEach(e -> {
Resource r = threadLocalMap.computeIfAbsent(Thread.currentThread(), t -> new Resource();
// use the thread local autocloseable here,
})
// later once all the tasks have finished.
// close all the thread local resources when the parallel processing is done
threadLocalMap.values().forEach(Utils::closeQuietly);
通常有一种方法可以在不引发异常的情况下关闭资源。Chronicle 有一个,但许多其他库也有。
public static void closeQuietly(Closeable c) {
if (c != null) {
try {
c.close();
} catch (IOException ioe) {
// ignore or trace log it
}
}
}
很可能您的项目中已经有一种方法可以做到这一点
https://www.google.co.uk/search?q=public+static+void+closequietly+Closeable