FTPClient ftpClient = new FTPClient();
ftpClient.connect("ftp.example.com");
ftpClient.login("username", "password");
ftpClient.uploadFile("localFile.txt", "remoteFile.txt");
ftpClient.downloadFile("remoteFile.txt", "localFile.txt");
ftpClient.disconnect();