programing

파일의 총 크기(바이트)를 가져옵니다.

sourcetip 2022. 9. 12. 12:00
반응형

파일의 총 크기(바이트)를 가져옵니다.

중복 가능성:
java는 파일 크기를 효율적으로 가져옵니다.

filename이라는 이름의 파일이 있습니다.이 파일은 다음 위치에 있습니다.E://file.txt.

FileInputStream fileinputstream = new FileInputStream(filename);

이 파일의 크기를 바이트 단위로 계산하고 싶습니다.어떻게 하면 좋을까요?

를 사용할 수 있습니다.length()에 대한 방법.File바이트 단위로 크기를 반환합니다.

파일 크기를 계산하기 위해 FileInputStream은 필요하지 않습니다.new File(path_to_file).length()충분합니다.아니면, 만약 당신이 원한다면fileinputstream.getChannel().size().

를 사용하면 간단하게 할 수 있습니다.

public static void main(String[] args) {
        try {
            File file = new File("test.txt");
            System.out.println(file.length());
        } catch (Exception e) {
        }
    }

언급URL : https://stackoverflow.com/questions/14478968/get-total-size-of-file-in-bytes

반응형