gpt4 book ai didi

java - 如何获取文件长度?

转载 作者:行者123 更新时间:2023-12-01 06:15:07 25 4
gpt4 key购买 nike

我试图获取文件的长度(以字节为单位),但每次测试不同的文件时,结果总是4065123.0。

这是我的代码的相关部分:

File file = new File(path + filename);
if(!file.exists()) {
System.out.println("File does not exist");
} else {
double bytes = file.length();
}

如何正确获取文件的长度?

最佳答案

尝试:

    File file =new File("myfile_in_test.java");

if(file.exists()){

final double bytes = file.length();
final double kilobytes = (bytes / 1024);

System.out.println("bytes : " + bytes);
System.out.println("kilobytes : " + kilobytes);
}else{
System.out.println("File does not exists!");
}

关于java - 如何获取文件长度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26699611/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com