Hi, new to Java. I want to use the org.apache.commons.lang.WordUtils package. Tried importing it. Tried downloading it and adding it to my build path. When I use intellisense for the word WordUtils Eclipse auto puts the import statement at the top of the file.
I get the following error when compiling:
ConvertToUrl.java:3: package org.apache.commons.lang
import org.apache.commons.lang.WordUtils;
^
ConvertToUrl.java:36: cannot find symbol
symbol : variable WordUtils
location: class d6.common.ConvertToUrl
url = WordUtils.capitalizeFully(url);
^
2 errors
And when I remove the import statement at the top I get:
ConvertToUrl.java:34: cannot find symbol
symbol : variable WordUtils
location: class d6.common.ConvertToUrl
url = WordUtils.capitalizeFully(url);
^
1 error
Thanks