根据指定文件创建FileInputStream,调用available方法返回文件大小,容量为byte
File file = new File("d:\hello.gif");
FileInputStream fis = null;
try{
fis = new FileInputStream(file);
System.out.println("文件size:"+String.valueOf(fis.available()/1000)+"k");
}catch(IOException e1){
System.out.println("IO出错!");
}
}catch(FileNotFoundException e2){
System.out.println("找不到指定文件");
}
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有