Java - 파일 크기(byte) 가져오기

자바에서 파일 크기를 byte로 가져오는 방법을 소개합니다.

1. File.length()로 파일 크기 가져오기

length()는 파일의 크기를 byte로 리턴합니다. 아래와 같이 byte를 KB, MB 등의 단위로 변환할 수 있습니다.

import java.io.File;

public class Example {

    public static void main(String[] args) {

            double bytes = Files.size(Path.of("/tmp/example.txt"));
            double kilobytes = (bytes / 1024);
            double megabytes = (kilobytes / 1024);

            System.out.println("bytes : " + bytes);
            System.out.println("kilobytes : " + kilobytes);
            System.out.println("megabytes : " + megabytes);
    }
}

Output:

bytes : 131338.0
kilobytes : 128.259765625
megabytes : 0.12525367736816406

2. Files.size()로 파일 크기 가져오기

Files.size()로 파일 크기를 가져올 수 있습니다. 인자로 파일에 대한 Path를 전달해야 하며 Paths.get(path)로 Path 객체를 생성할 수 있습니다. 파일 크기는 byte로 리턴됩니다.

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;

public class Example1 {

    public static void main(String[] args) throws IOException {

        double bytes = Files.size(Paths.get("/tmp/example.txt"));
        double kilobytes = (bytes / 1024);
        double megabytes = (kilobytes / 1024);

        System.out.println("bytes : " + bytes);
        System.out.println("kilobytes : " + kilobytes);
        System.out.println("megabytes : " + megabytes);
    }
}

Output:

bytes : 131338.0
kilobytes : 128.259765625
megabytes : 0.12525367736816406
Loading script...

Related Posts

codechachaCopyright ©2019 codechacha