I am trying to import StringUtils. My first step was downloading 'commons-lang3-3.4.jar' which I included in the same directory as my PersonTester.java file that I am working on. In my PersonTester.java in which I intend to use StringUtils, I include:
import org.apache.commons.lang3.StringUtils;
When I try and compile I get the following error:
PersonTester.java:6: error: package org.apache.commons.lang3 does not exist
import org.apache.commons.lang3.StringUtils;
When I comment out the import statement and remove any statements that intend to utilize StringUtils, it compiles and runs just fine.
Thank you!