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; } }
时间: 2024-10-10 10:30:46