Java Development
-
Establish connection with FTP Server
With this example we are going to demonstrate how to establish a connection with an FTP Server. We are using…
Read More » -
Download file from FTP Server
This is an example of how to download a File from an FTP Server, using the org.apache.commons.net.ftp.FTPClient Class, that encapsulates…
Read More » -
File Upload to FTP Server
In this example we shall show you how to upload a File to an FTP Server, using the org.apache.commons.net.ftp.FTPClient Class,…
Read More » -
Check if Days and Calendars match
With this example we are going to demonstrate how to check if Days and Calendars match. We are using the…
Read More » -
Capitalize words of a string
This is an example of how to capitalize the words of a String. We are using the org.apache.commons.lang3.text.WordUtils Class, that…
Read More » -
Generate random alphanumeric string
In this example we shall show you how to generate random alphanumeric String objects. We are using the org.apache.commons.lang3.RandomStringUtils class, that…
Read More » -
Date and Time format
With this example we are going to demonstrate how to make Date and Time formatting. We are using the org.apache.commons.lang3.time.DateFormatUtils…
Read More » -
Word counter
This is an example of how to count the words of a String paragraph, using the org.apache.commons.lang3.StringUtils class. This class provides…
Read More » -
Convert array to Map
In this example we shall show you how to convert an array to a Map. We are using the org.apache.commons.lang3.ArrayUtils class,…
Read More » -
Array reverse order
With this example we are going to demonstrate how to reverse the order of an array. We are using the…
Read More »