throws IOException, UnserializationException
{
FtpURL ftpURL = new FtpURL(urlString);
FtpClient ftpClient = new FtpClient(ftpURL.host);
ftpClient.login(ftpURL.user,ftpURL.pass);
ftpClient.binary();
ftpClient.cd(ftpURL.dir);
BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(ftpClient.put(ftpURL.file)));
writer.write(string);
writer.close();