{{theTime}}

Search This Blog

Total Pageviews

java.lang.IllegalArgumentException: protocol = ftp host = null

java.lang.IllegalArgumentException: protocol = ftp host = null
at sun.net.spi.DefaultProxySelector.select(DefaultProxySelector.java:176)
at sun.net.www.protocol.ftp.FtpURLConnection.connect(FtpURLConnection.java:226)
at sun.net.www.protocol.ftp.FtpURLConnection.getOutputStream(FtpURLConnection.java:507)
at com.research.ftp.FTPClient.main(FTPClient.java:39)

This exception will be thrown when connecting URL is not correct.

Resolution:

Check the ftp URL:  The format is "ftp//username:password@hostname/destinationfile".  If you may have any questions, please feel free to post a comment I will take a look.

No comments:

Generate Insert Sql from Select Statement

SELECT 'INSERT INTO ReferenceTable (ID, Name) VALUES (' +        CAST(ID AS NVARCHAR) + ', ''' + Name + ''...