Here you can find the source of getFileSize(String filename, String dir)
public static int getFileSize(String filename, String dir)
//package com.java2s; //License from project: Apache License import java.io.File; public class Main { public static int getFileSize(String filename, String dir) { File file = new File(dir, filename); int size = (int) (file.length()); return size; }/* www. j ava2 s. c o m*/ }