IOUtils

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;
    }
}

 

posted @ 2016-05-16 17:54  znyyjk  阅读(161)  评论(0编辑  收藏  举报