Here you can find the source of formatFileSize(long size)
Parameter | Description |
---|---|
size | the file size to format |
public static String formatFileSize(long size)
//package com.java2s; /*//w w w . ja v a 2 s . c o m * AdminUtils.java * * This work is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published * by the Free Software Foundation; either version 2 of the License, * or (at your option) any later version. * * This work is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * * Copyright (c) 2004-2006 Per Cederberg. All rights reserved. */ public class Main { /** * Formats a file size to a printable string. * * @param size the file size to format * * @return a printable string with the file size */ public static String formatFileSize(long size) { float value = size; String unit; if (size > 1000000) { value /= 1048576; unit = " MiB"; } else if (size > 2000) { value /= 1024; unit = " KiB"; } else { unit = " Bytes"; } value = Math.round(value * 10) / 10.0f; if (value == (int) value) { return (int) value + unit; } else { return value + unit; } } }