Top "Apache-commons" questions

The Apache Commons project provides reusable, open source Java software components.

JSP can't resolve import of org.apache.commons.lang

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 stringescapeutils
Map that could be iterated in the order of values

I need a Map that could be iterated in the decreasing order of its values. Does any of the standard …

java collections map guava apache-commons
Commons FTPClient hangs after uploading large a file

I'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-client
FileUtils.listFiles and IOFileFilter

Hi i want to recursively check if the files and subfolders of a certain directory contain a certain string so …

java apache-commons fileutils
Apache Commons CLI: replacement for deprecated OptionBuilder?

IntelliJ 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-cli
Monitoring progress using Apache Commons FTPClient

I 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-client
What is the difference between Apache Commons Lang3 vs Apache Commons Text?

I am wondering what is the difference between Apache Commons Lang3 (org.apache.commons.lang3) vs Apache Commons Text (org.…

java apache-commons apache-commons-lang3
Android: gradle exclude commons-codec

In 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-codec
apache commons configuration loads property until "," character

I want to load configuration (apache commons configuration) from a properties file. My program is: PropertiesConfiguration pc = new PropertiesConfiguration("my.…

java apache-commons apache-config
Is there a fast concat method for linked list in Java?

How 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