标签:
package com.itheima.googleplay_8.utils; import java.io.Closeable; import java.io.IOException; public class IOUtils { /** 关闭流 */ public static boolean close(Closeable io) { if (io != null) { try { io.close(); } catch (IOException e) { LogUtils.e(e); } } return true; } }
标签:
原文地址:http://www.cnblogs.com/znyyjk/p/5498962.html