如何从字节中了解文件大小

时间:2013-12-22 18:40:07

标签: java

我有字节数组,如何知道文件大小? (在JAVA中)

File file = new File("patch");
file.length() // <--- it's good, but I haven't original file... (( I get file in bytes from DataBase !

由于

1 个答案:

答案 0 :(得分:1)

你有一个数组,每个数组都有一个长度。就是这样。

byteArray.length;

并且

1kb = 1024 bytes