码迷,mamicode.com
首页 > 其他好文 > 详细

自抽工具类

时间:2017-08-12 18:12:08      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:...   div   turn   stream   java   static   ati   except   关闭   

1.关闭所有流

import java.io.Closeable;
import java.io.IOException;

public class AllClose {
	
	public static boolean close(Closeable ...closeables){
		for(Closeable stream:closeables)
		{
			try {
				stream.close();
			} catch (IOException e) {
				// TODO Auto-generated catch block
				System.out.println(e.getMessage());
				return false;
			}
		}
		return true;
	}
}

 

自抽工具类

标签:...   div   turn   stream   java   static   ati   except   关闭   

原文地址:http://www.cnblogs.com/ssjifm/p/7350953.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!