Filezilla server is a bit unusual in that it requires the PBSZ 0 and PROT P commands (which are mandated in explicit mode FTPS) to be called for implicit FTPS. Most servers don't. There is no RFC for implicit mode, so there is no right or wrong way.
Using SecureFileTransferClient, you'll need to call these commands immediately after logging in:
client.executeCommand("PBSZ 0");
client.executeCommand("PROT P");