📄 streamcloser.java
字号:
/* * @(#)StreamCloser.java 1.3 05/12/01 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.imageio.stream;import java.io.IOException;import java.util.Set;import java.util.WeakHashMap;import javax.imageio.stream.ImageInputStream;/** * This class provide means to properly close hanging * image input/output streams on VM shutdown. * This might be useful for proper cleanup such as removal * of temporary files. * * Addition of stream do not prevent it from being garbage collected * if no other references to it exists. Stream can be closed * explicitly without removal from StreamCloser queue. * Explicit removal from the queue only helps to save some memory. */public class StreamCloser { private static WeakHashMap<ImageInputStream, Object> toCloseQueue; private static Thread streamCloser; public static void addToQueue(ImageInputStream iis) { synchronized (StreamCloser.class) { if (toCloseQueue == null) { toCloseQueue = new WeakHashMap<ImageInputStream, Object>(); } toCloseQueue.put(iis, null); if (streamCloser == null) { final Runnable streamCloserRunnable = new Runnable() { public void run() { if (toCloseQueue != null) { synchronized (StreamCloser.class) { Set<ImageInputStream> set = toCloseQueue.keySet(); // Make a copy of the set in order to avoid // concurrent modification (the is.close() // will in turn call removeFromQueue()) ImageInputStream[] streams = new ImageInputStream[set.size()]; streams = set.toArray(streams); for (ImageInputStream is : streams) { if (is != null) { try { is.close(); } catch (IOException e) { } } } } } } }; java.security.AccessController.doPrivileged( new java.security.PrivilegedAction() { public Object run() { /* The thread must be a member of a thread group * which will not get GCed before VM exit. * Make its parent the top-level thread group. */ ThreadGroup tg = Thread.currentThread().getThreadGroup(); for (ThreadGroup tgn = tg; tgn != null; tg = tgn, tgn = tg.getParent()); streamCloser = new Thread(tg, streamCloserRunnable); Runtime.getRuntime().addShutdownHook(streamCloser); return null; } }); } } } public static void removeFromQueue(ImageInputStream iis) { synchronized (StreamCloser.class) { if (toCloseQueue != null) { toCloseQueue.remove(iis); } } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -