I want to upload file from my system to remote server as http://ftp.how i am to resolve this.I am using FTPClient client = new FTPClient(); and client.connect("sftp://something.com");But i am unable to connect it how i am check weather problem with my code or url.like ping command
I want to upload file from my system to remote server as ftp.how i
Share
I haven’t used
FTPClient(assume you mean Apache Commons FTPClient but a quick browse of apidocs shows two errors in your use:client.connect("sftp://something.com")should beclient.connect("something.com")