I tried importing the imports on the apache commons lang website, but they don't seem to work. It keeps telling me the last two packages im trying to import in the code below do not exist. I'm using Java on Netbeans 8.2, what seems to be the problem?
import java.util.*;
import java.lang.Object;
import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang ;
public class Howmanysentences {
public static void main(String[] args) {
Scanner input = new Scanner (System.in);
System.out.println("Enter: ");
String shortEssay = input.nextLine();
int counterr = StringUtils.countOccurrencesOf(shortEssay,".");
System.out.println(counterr);
}
}