In this section, you will learn how to get the size of a file.
Description of code:
You can see in the given example, we have created an object of File class and specified a file in the constructor. The object then calls the method length() which returns the size of the file in bytes. Then we have converted the size of file from bytes to kilo bytes.
Here is the code:
import java.io.*;
public class FileSize {
public static void main(String args[]) {
File file = new File("C:/java.txt");
long filesize = file.length();
long filesizeInKB = filesize / 1024;
System.out.println("Size of File is: "
+ filesizeInKB + " KB");
}
}
Through the method length(), you can get the size of any file. This method returns the size in bytes.
Output:
| Size of File is: 1 KB |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Getting the Size of a File in Java View All Comments
Post your Comment