The Apache Commons is a project of the Apache Software Foundation, formerly under the Jakarta Project. The purpose of the Commons is to provide reusable, open source Java software. The Commons is composed of three parts: proper, sandbox, and dormant.

learn more… | top users | synonyms

67
votes
4answers
8k views

Apache Commons vs. Google Collections

I was looking for a bidirectional map implementation in Java, and stumbled upon these two libraries: Apache Commons Collections Google Collections Both are free, have the bidirectional map ...
37
votes
3answers
4k views

What are the big improvements between guava and apache equivalent libraries?

We currently use apache collections, string utils, etc. I need to decide if we should switch from the apache foundations implementation. The important criteria is ease of developers use. ...
28
votes
4answers
5k views

How to convert byte size into human readable format in java?

How to convert byte size into human-readable format in Java? Like 1024 should become "1 Kb" and 1024*1024 should become "1 Mb". I am kind of sick of writing this utility method for each project. Are ...
27
votes
7answers
10k views

How to send java.util.logging to log4j?

I have an existing application which does all of its logging against log4j. We use a number of other libraries that either also use log4j, or log against Commons Logging, which ends up using log4j ...
21
votes
4answers
3k views

apache commons equals/hashcode builder

I'm curious to know, what people here think about using org.apache.commons.lang.builder EqualsBuilder/HashCodeBuilder for implementing the equals/hashcode? Would it be a better practice than writing ...
20
votes
3answers
14k views

Logging framework incompatibility

I'm building a small Java app and hoping to use logback for logging. My app has a dependency on an older project that does its logging via org.apache.commons | ...
15
votes
9answers
951 views

Is StringUtils.EMPTY recommended?

Do you use StringUtils.EMPTY instead of ""? I mean as a return value or if you set a the value of a String variable. I don't mean for comparison, because there we use StringUtils.isEmtpy()
11
votes
2answers
8k views

Logging using SL4J, Jakarta Commons logging, log4j for third party libraries and my own code

I have some questions about logging, more specifically about setting it up and making sure it works. The project I'm doing will use Wicket, Spring and Hibernate. I know that Wicket and Hibernate uses ...
10
votes
5answers
3k views

Does Apache Commons HttpClient support GZIP?

Does the library Apache Commons HttpClient support Gzip? We wanted to use enable gzip compression on our Apache server to speed up the client/server communications (we have a php page that allows our ...
10
votes
7answers
623 views

Is there an equivalent to Java's ToStringBuilder for C#? What would a good C# version feature?

In the Java world we have Apache Commons' ToStringBuilder to help with creating toString() implementations. ( http://commons.apache.org/lang/api/org/apache/commons/lang/builder/ToStringBuilder.html ) ...
10
votes
8answers
1k views

Genericized commons collection

I'm astonished that the Apache Commons Collections project still hasn't got around to making their library generics-aware. I really like the features provided by this library, but the lack of support ...
8
votes
4answers
2k views

Guava equivalent for IOUtils.toString(InputStream)

Apache Commons IO has a nice convenience method IOUtils.toString() to read an InputStream to a String. Since I am trying to move away from Apache Commons and to Guava: is there an equivalent in ...
8
votes
3answers
6k views

Preventing HttpClient 4 from following redirect

I'm connecting to my AppEngine application using the Apache HttpComponents library. In order to authenticate my users, I need to pass an authentication token along to the application's login address ...
7
votes
6answers
699 views

How to disable echo when sending a terminal command using apache-commons-net TelnetClient

So, I have this class that uses the org.apache.commons.net.telnet.TelnetClient class. It attempts to send commands and read the response. public class AutomatedTelnetClient { private TelnetClient ...
7
votes
8answers
281 views

IP fallback in android

I'm accessing a server for web service calls. When I'm developing on the same network as the server, I can access the web service by its internal IP address but not its external IP address. However, ...
7
votes
1answer
2k views

tomcat-dbcp vs commons-dbcp

It seems there is a lot of confusion between these tow connection pooling libraries. What I want to know is which one is better (if at all). Here are some points which I would like to put up ...
6
votes
6answers
185 views

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 libraries like Apache Commons or Guava provide this kind of map ?
6
votes
3answers
169 views

Will Apache Commons work in all servers?

Will the Apache commons files(jar) work in all servers or only in the Apache server?
6
votes
6answers
243 views

Commons method to test for an empty Java object graph?

I've found myself writing a method like this: boolean isEmpty(MyStruct myStruct) { return (myStruct.getStringA() == null || myStruct.getStringA().isEmpty()) && (myStruct.getListB() == ...
6
votes
2answers
2k views

Is apache commons-lang 3.0 available in any maven repo?

commons-lang 3.0 is still beta, but can it be found in some maven repository (I couldn't)
6
votes
5answers
2k views

Append data into a file using Apache Commons I/O

The FileUtils.writeStringToFile(fileName, text) function of Apache Commons I/O overwrites previous text in a file. I would like to append data to my file. Is there any way I could use Commons I/O for ...
6
votes
6answers
1k views

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? E.g. in the jdk there is only the addAll method which is O(n). Another feature I miss ...
6
votes
3answers
716 views

What sort of equality does the Apache Commons ObjectUtils equals method test for?

I have always understood there to be two types of equality in Java, value equality : uses the .equals() method to test that two objects implement an equivalence relation on non-null object ...
6
votes
3answers
683 views

Java commons-cli, options with list of possible values

How can I make an option accept only some specified values like in the following example: $ java -jar Mumu.jar -a foo OK $ java -jar Mumu.jar -a bar OK $ java -jar Mumu.jar -a foobar foobar is not a ...
5
votes
2answers
574 views

Converting from HttpClient 3 to 4

I've managed to make changes to everything but the following: HttpClient client; HttpPost method; client = new DefaultHttpClient(); method = new HttpPost(url); InputStream rstream; ...
5
votes
1answer
165 views

Why is this code dying on Windows?

I'm trying to port some code from Linux to Windows. I really don't know much about Windows, and so I'm kind of flying blind. The code in question attempts to delete some directories using ...
5
votes
10answers
407 views

What part of Apache Commons saves you the most time?

Community wiki'ed already, folks. What part of Apache Commons saves you the most time? I'm curious to get together a list of these to browse and see what I don't know about, or what I should be ...
5
votes
1answer
6k views

ConfigurationException in Java?

Decided to use Apache's Common Configuration package to parse an XML File. I decided to do a: XMLConfiguration xmlConfig = new XMLConfiguration(file); To which Eclipse complained that I haven't ...
5
votes
3answers
13k views

How to Serialize a list in java?

I would like to deep clone a List. for that we are having a method SerializationUtils.clone ( object ) // apache commons method. Object shld be serializable so now to clone my List i should convert ...
5
votes
1answer
2k views

Capturing large amounts of output from Apache Commons-Exec

I am writing a video application in Java by executing ffmpeg and capturing its output to standard output. I decided to use Apache Commons-Exec instead of Java's Runtime, because it seems better. ...
4
votes
3answers
155 views

Do apache commons CommandLine objects protect against command line injection?

I want to use the org.apache.commons.exec Java library to call an executable. Does the CommandLine object protect against command line injection? For example, if I call: String singleStringArgument = ...
4
votes
2answers
131 views

Is there a java utility method for creating a list with specified size and contents?

public static <T> List<T> repeat(T contents, int length) { List<T> list = new ArrayList<T>(); for (int i = 0; i < length; i++) { list.add(contents); } ...
4
votes
2answers
401 views

what the relationship between commons-httpclient and httpclient, both from apache

Any relationship or difference between those two libraries.
4
votes
2answers
364 views

When should I use Apache Commons' Validate.isTrue, and when should I just use the 'assert' keyword?

When should I use Apache Commons' Validate.isTrue, and when should I just use the 'assert' keyword?
4
votes
1answer
113 views

Are there any other comparable implementations like commons-chain?

I need simple workflow (not real workflow engines like jbpm or activiti etc) kind of library to be used for simple orchestrations. I am wondering if there are any out there. Main focus is on Simple ...
4
votes
5answers
215 views

Where should configuration be placed?

I have an application structured as follows: dao domain main services utils I've made a class that reads the application configuration from an XML file. The question is where should it be placed? ...
4
votes
1answer
199 views

Java apache commons library source license question

I want to use functionality from a certain method in apache commons StringUtils. I currently do not have the option of just using the library as one would normally do. I found the source for the ...
4
votes
2answers
3k views

Issue with org.apache.commons.net.ftp.FTPClient listFiles()

The listFiles() method of org.apache.commons.net.ftp.FTPClient works fine with Filezilla server on 127.0.0.1 but returns null on the root directory of public FTP servers such as belnet.be. There is ...
4
votes
2answers
581 views

How safe is apache Commons-javaflow while using jasperreports

I am using jasperreport and trying to pass an alternate report runner. • net.sf.jasperreports.engine.fill.JRThreadSubreportRunner: The initial thread-based implementation • ...
4
votes
4answers
3k views

Apache Commons FTPClient.listFiles

I am using org.apache.commons.net.ftp.FTPClient in one of my applications to work with a FTP server. I am able to connect, login, pwd and cwd. However, when I try to list the files it doesn't return ...
4
votes
4answers
972 views

java: Preferences API vs. Apache Commons Configuration

I need to allow the user to store/load an arbitrary number of lists of objects (assume they are Serializable). Conceptually I want a data model like class FooBean { /* bean stuff here */ } class ...
4
votes
1answer
312 views

Apache Commons JCI ReloadingClassLoader

Does anyone have any experience in using the ReloadingClassLoader of the Apache Commons JCI API? The only usage example can found in the following page: http://commons.apache.org/jci/usage.html I ...
4
votes
7answers
1k views

What is the best List implementation for Large lists in java

I have to create a large list of n elements (could be up to 100,000). each element in the list is an integer equivalent to the index of the list. After this I have to call Collections.shuffle on this ...
3
votes
1answer
113 views
+50

How to get Apache CLI to handle double-dash?

I've looked at the docs but can't see how to get the Apache Commons CLI to handle the double-hyphen "option" that normally terminates option processing. Consider the following command-line which has ...
3
votes
1answer
29 views

Are there known discrepencies between Apache FileUtils.isSymlink and Java7's Files.isSymbolicLink()?

While debugging on my Windows 7 64 bit machine, I noticed that there is a symlink folder, that FileUtils.isSymlink() returns false for. Java7's Files.isSymbolicLink() works correctly. Is this known? ...
3
votes
3answers
173 views

Is there an enum with MIME Types in Java? [closed]

Possible Duplicate: Interface/enum listing standard mime-type constants Is there an enum (or something similar) which holds constants for the most common MIME types? I'd like to deal with ...
3
votes
1answer
145 views

Why can't Scala find org.apache.commons.lang package?

I want to use org.apache.commons.lang.NotImplementedException as it seems to be the only NotImplementedException implementation in Java/Scala domain. I can remember I used to use it with Scala 2.8.1 ...
3
votes
3answers
95 views

How do I properly destroy an Apache Commons DBCP Pool in Java?

I would like to use a PoolingDataSource as my connection pool (API at: http://commons.apache.org/dbcp/apidocs/org/apache/commons/dbcp/PoolingDataSource.html), but I don't know what to do with the pool ...
3
votes
1answer
316 views

Using Guava Collections2 transform method to work as Apache CollectionUtil.forAllDo

I've read some post comparing Guava and Apache Commons, and most of the posters prefer using Guava. I also prefer using Guava, though I frequently find myself the need to combine Guava and Apache ...
3
votes
1answer
54 views

Setting the Bounce Address in Apache Commons Mail

Using the Apache Commons to send email there is the following code. HtmlEmail email = new HtmlEmail(); email.setHostName(SMTP_HOST_NAME); email.setSmtpPort(587); email.setAuthenticator(new ...

1 2 3 4 5 9