Browse Source

关闭文件流

NorthLan 6 years ago
parent
commit
72aab741ef
1 changed files with 3 additions and 0 deletions
  1. 3 0
      zen-core/src/main/kotlin/com/gxzc/zen/common/util/FileUtil.kt

+ 3 - 0
zen-core/src/main/kotlin/com/gxzc/zen/common/util/FileUtil.kt

@@ -86,6 +86,9 @@ object FileUtil {
                 retBuffer.put(byte)
             }
         }
+
+        fc.close() // 关闭文件流
+
         return if (retBuffer != null) {
             val timeByteArray = ByteBuffer.allocate(8).putLong(lastModified).array()
             timeByteArray.reverse()