I\'m using the Stanford Named Entity Recognizer http://nlp.stanford.edu/software/CRF-NER.shtml and it\'s working fine. This is
List&
Code for the above:
result = classifier.classifyToCharacterOffsets(text); for (Triple triple : result) { System.out.println(triple.first + " : " + text.substring(triple.second, triple.third)); }