Hello everybody,
I have a few questions regarding how to use a .class file I unpacked from a .jar file I downloaded from the Internet.
I downloaded the commons-io-2.4.jar file from commons . apache . org /proper/commons-io/
In it you can see that there is a class called FileUtil.class:
jar tf commons-io-2.4.jar | grep FileUtil
org/apache/commons/io/FileUtils.class
I extracted this with the following command:
jar xf commons-io-2.4.jar FileUtils.class
It is now in ..uk/ac/ebi/bioinvindex/services/datasearch/commons/FileUtils.class
Now, I have a java file where I would like to use FileUtils.
How do I do that? How do I import it?
Thanks, Matthew