Java: Find the size of a specified file
Java Basic: Exercise-45 with Solution
Write a Java program to find the size of a specified file.
Pictorial Presentation:

Sample Solution:
Java Code:
import java.util.Scanner;
import java.io.File;
public class Exercise45 {
public static void main(String[] args) {
// Display the file sizes in bytes for two files.
System.out.println("/home/students/abc.txt : " + new File("abc.txt").length() + " bytes");
System.out.println("/home/students/test.txt : " + new File("test.txt").length() + " bytes");
}
}
Sample Output:
/home/students/abc.txt : 0 bytes /home/students/test.txt : 0 bytes
Flowchart:

Java Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a Java program that accepts an integer (n) and computes the value of n+nn+nnn.
Next: Write a Java program to display the system time.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join