张延森 4 gadus atpakaļ
vecāks
revīzija
88a14acff1
1 mainītis faili ar 6 papildinājumiem un 0 dzēšanām
  1. 6
    0
      src/main/java/com/yunzhi/niucai/alipay/Utils.java

+ 6
- 0
src/main/java/com/yunzhi/niucai/alipay/Utils.java Parādīt failu

@@ -7,6 +7,12 @@ import java.nio.charset.StandardCharsets;
7 7
 import java.nio.file.Paths;
8 8
 
9 9
 public class Utils {
10
+    /**
11
+     * 小文件读取, 文件大小不能超过 2M
12
+     * @param f
13
+     * @return
14
+     * @throws IOException
15
+     */
10 16
     public static String readFile(String f) throws IOException {
11 17
         FileChannel file = FileChannel.open(Paths.get(f));
12 18
         int fileSize = (int) file.size();