# Class: com.pnfsoftware.jeb.util.encoding.zip.fsr.CentralDirFileHeader

Representation of the central directory header of a Zip file. At least 46 bytes.

## Constructor: CentralDirFileHeader


## Method: getFilename
- return type: `java.lang.String`

Description: Get the entry file name decoded as UTF\-8.
return: entry file name

## Method: isEncrypted
- return type: `boolean`

Description: Determine whether the entry is flagged as encrypted.
return: true if the encryption flag is set

## Method: toString
- return type: `java.lang.String`


## Static Method: parse
- parameter: `channel`, type: `java.nio.channels.SeekableByteChannel`
- parameter: `base`, type: `int`
- return type: `com.pnfsoftware.jeb.util.encoding.zip.fsr.CentralDirFileHeader`

Description: Parse a central directory file header from a channel.
parameter: channel: input channel
parameter: base: offset of the header signature
return: parsed header
throws: if the header cannot be read

