Skip to content

Instantly share code, notes, and snippets.

View nitish8879's full-sized avatar

Nitish Gupta Youtube nitish8879

View GitHub Profile
@SatyaSnehith
SatyaSnehith / Converter.java
Last active September 28, 2024 17:58
Convert Bytes to KB, MB, GB, TB - java
public class Converter{
static long kilo = 1024;
static long mega = kilo * kilo;
static long giga = mega * kilo;
static long tera = giga * kilo;
public static void main(String[] args) {
for (String arg: args) {
try {
System.out.println(getSize(Long.parseLong(arg)));