62장. zip 파일
Zip 파일 데이터 형식은 메시지 압축 및 압축 형식입니다. 메시지는 단일 항목이 포함된 Zip 파일에 마샬링할 수 있으며 단일 항목이 포함된 Zip 파일은 원래 파일 콘텐츠로 미끄럽거나 압축되지 않을 수 있습니다.Messages can be marshalled (compressed) to Zip files containing a single entry, and Zip files containing a single entry, and Zip files can be unmarshalled (decompressed) to the original file contents. 이 데이터 형식은 Java 7 이상이 사용되는 동안 ZIP64를 지원합니다.
62.1. zip 파일 옵션
Zip 파일 데이터 형식은 아래 나열된 4 가지 옵션을 지원합니다.
이름 | 기본값 | Java Type | 설명 |
---|---|---|---|
usingIterator |
| zip 파일에 하나 이상의 항목이 있는 경우 이 옵션을 true로 설정하면 splitter EIP를 사용하여 스트리밍 모드에서 데이터를 분할할 수 있습니다.If the zip file has more then one entry, the setting this option to true, allows to work with the splitter EIP, to split the data using an iterator in a streaming mode. | |
allowEmptyDirectory |
| zip 파일에 하나 이상의 항목이 있는 경우 이 옵션을 true로 설정하면 디렉터리가 비어 있어도 반복기를 가져올 수 있습니다. | |
preservePathElements |
| 파일 이름에 경로 요소가 포함된 경우 이 옵션을 true로 설정하면 zip 파일에서 경로를 유지 관리할 수 있습니다.If the file name contains path elements, setting this option to true, allows the path to be maintained in the zip file. | |
maxDecompressedSize |
| zip 파일의 최대 압축 해제된 크기(바이트 단위)를 설정합니다. 지정되지 않은 경우 기본값은 1기가바이트입니다. 압축 해제된 크기가 이 양을 초과하면 IOException이 발생합니다. 최대 압축 해제 크기 설정을 비활성화하려면 -1로 설정합니다. |