Microsoft 社는 2022년 6월 15일 Internet Explorer 11의 지원을 종료했습니다.

zip 파일내의 파일이름을 iso-8859-1 encoding으로 읽는 방법

제목

zip 파일내의 파일이름을 iso-8859-1 encoding으로 읽는 방법

zip 파일내의 파일이름을 iso-8859-1 encoding으 로 가져오려면 다음과 같이 ZipInputStream 의 생성자에 charset 을 공급해야 한다.

FileInputStream fis = new FileInputStream(fileName);
ZipInputStream zis = new ZipInputStream(fis, StandardCharsets.ISO_8859_1);
while((ZipEntry entry = zis.getNextEntry()) != null) {
String fileName = entry.getName();
}

위와 같이 iso-8859-1 로 읽었다면, 다음과 같이 EUC-KR 로 변경할 수도 있다.

String fileName = entry.getName();
String converted = new String(fileName.getBytes("iso-5589-1"), "euc-kr");
제목

첨부파일