Android examples for Hardware:Device Feature
get the space is left over on phone self
//package com.java2s; import android.os.Environment; import android.os.StatFs; import java.io.File; public class Main { /**/*from w w w. j a v a 2 s. co m*/ * get the space is left over on phone self */ public static long getRealSizeOnPhone() { File path = Environment.getDataDirectory(); StatFs stat = new StatFs(path.getPath()); long blockSize = stat.getBlockSize(); long availableBlocks = stat.getAvailableBlocks(); long realSize = blockSize * availableBlocks; return realSize; } }