Here you can find the source of getFileSizeInByte(File file)
public static long getFileSizeInByte(File file)
//package com.java2s; //License from project: Open Source License import java.io.File; public class Main { public static long getFileSizeInByte(File file) { return file.length(); }//from w ww . j a va 2 s. co m public static long getFileSizeInByte(String file) { return getFileSizeInByte(new File(file)); } }