我有字节数组,如何知道文件大小? (在JAVA中)
File file = new File("patch");
file.length() // <--- it's good, but I haven't original file... (( I get file in bytes from DataBase !
由于
答案 0 :(得分:1)
你有一个数组,每个数组都有一个长度。就是这样。
byteArray.length;
并且
1kb = 1024 bytes