2

I've been turned on to the Apache IO package here, so have downloaded it.

Yet, not wanting to clutter up my project with more stuff than I need, but simultaneously not wanting to omit necessary bits, I want to know just which jar file or files I need to add. There are several:

enter image description here

Based on what I found here, adding the .jar[s] should go smoothly, but which one[s] do I need?

Is commons-io-2.4.jar enough? Is commons-io-2.4-sources.jar enough? Both of them? Or...???

Community
  • 1
  • 1
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862

1 Answers1

2

You only need the commons-io-2.4.jar to use the library.

Explanation on the other ones

commons-io-2.4-sources.jar: sourcecode for commons-io-2.4.jar

commons-io-2.4-javadoc.jar: documentation for commons-io-2.4.jar

commons-io-2.4-tests.jar: tests for commons-io-2.4.jar

commons-io-2.4-test-sources.jar: sourcecode for commons-io-2.4-tests.jar

user432
  • 3,506
  • 17
  • 24