Returns a human-readable version of the file size, where the input represents a specific number of bytes. : File Size « File Input Output « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JDK 6
25.JNDI LDAP
26.JPA
27.JSP
28.JSTL
29.Language Basics
30.Network Protocol
31.PDF RTF
32.Reflection
33.Regular Expressions
34.Scripting
35.Security
36.Servlets
37.Spring
38.Swing Components
39.Swing JFC
40.SWT JFace Eclipse
41.Threads
42.Tiny Application
43.Velocity
44.Web Services SOA
45.XML
Java » File Input Output » File SizeScreenshots 
Returns a human-readable version of the file size, where the input represents a specific number of bytes.
      
/*
Ochan - image board/anonymous forum
Copyright (C) 2010  David Seymore

This program 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 program 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */
//package org.ochan.util;

public class FileUtils {

  /**
   * The number of bytes in a kilobyte.
   */
  public static final long ONE_KB = 1024;

  /**
   * The number of bytes in a megabyte.
   */
  public static final long ONE_MB = ONE_KB * ONE_KB;

  /**
   * The number of bytes in a gigabyte.
   */
  public static final long ONE_GB = ONE_KB * ONE_MB;

  /**
   * Returns a human-readable version of the file size, where the input
   * represents a specific number of bytes.
   
   @param size
   *            the number of bytes
   @return a human-readable display value (includes units in binary powers)
   *         http://en.wikipedia.org/wiki/MiB
   */
  public static String byteCountToDisplaySize(long size) {
    String displaySize;

    if (size / ONE_GB > 0) {
      float value = Float.valueOf(size).floatValue()
          / Float.valueOf(ONE_GB).floatValue();
      displaySize = String.valueOf(Round(value, 2)) " GiB";
    else if (size / ONE_MB > 0) {
      float value = Float.valueOf(size).floatValue()
          / Float.valueOf(ONE_MB).floatValue();
      displaySize = String.valueOf(Round(value, 2)) " MiB";
    else if (size / ONE_KB > 0) {
      float value = Float.valueOf(size).floatValue()
          / Float.valueOf(ONE_KB).floatValue();
      displaySize = String.valueOf(Round(value, 2)) " KiB";
    else {
      displaySize = String.valueOf(size" bytes";
    }
    return displaySize;
  }

  public static float Round(float value, int numberOfPlaces) {
    float p = (floatMath.pow(10, numberOfPlaces);
    value = value * p;
    float tmp = Math.round(value);
    return (floattmp / p;
  }

}

   
    
    
    
    
    
  
Related examples in the same category
1.Get File Size In Bytes
2.Get File Size In MB
3.display Bytes Size
4.Bytes counting
5.Size formatting utility.
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.