The Apache Commons project provides reusable, open source Java software components.
I am trying to include the library StringEscapeUtils and everything that I can find indicates that I can import the …
java jsp apache-commons url-encoding stringescapeutilsI need a Map that could be iterated in the decreasing order of its values. Does any of the standard …
java collections map guava apache-commonsI'm using Apache Commons FTPClient 3.1 to do a simple file upload. storefile() works fine for files of smaller sizes (under 100…
java apache upload apache-commons ftp-clientHi i want to recursively check if the files and subfolders of a certain directory contain a certain string so …
java apache-commons fileutilsIntelliJ shows that OptionBuilder is deprecated in this example code from http://commons.apache.org/proper/commons-cli/usage.html. What …
java apache-commons apache-commons-cliI have a simple FTPClient class that downloads files form an FTP server. I also need to monitor progress of …
java ftp download apache-commons ftp-clientI am wondering what is the difference between Apache Commons Lang3 (org.apache.commons.lang3) vs Apache Commons Text (org.…
java apache-commons apache-commons-lang3In my android project I need commons-codec 1.8 and I would like to exclude the built-in commons-codec version. I also have …
android maven dependencies apache-commons apache-commons-codecI want to load configuration (apache commons configuration) from a properties file. My program is: PropertiesConfiguration pc = new PropertiesConfiguration("my.…
java apache-commons apache-configHow can I concat two linked lists in O(1) with Java via jdk1.6, google or apache commons collection or whatever? …
java collections linked-list apache-commons guava