Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    public static String displayableSize(long bytes) {
        double kbytes = bytes / 1024.0;
        if (kbytes < 1000)
            return String.format("%.1f KB", kbytes);

        double mbytes = bytes / (1024.0 * 1024.0);
        if (mbytes < 1000)
            return String.format("%.1f MB", mbytes);

        double gbytes = bytes / (1024.0 * 1024.0 * 1024.0);
        return String.format("%.1f GB", gbytes);
    }
}