You're right: ANTLR is not well suited for things like this.
I have no experience with NLTK, but have tried to do some "heavy lifting" through Jython which didn't pan out too well.
The Stanford Natural Language Processing Group have a good NL parser. That is, I've heard good things about it, I am by no means an expert in NLP!
Here's how you can parse a simple English sentence like "I am currently writing an NLP project in Java that tags and parses text.":
import edu.stanford.nlp.ling.*;
import edu.stanford.nlp.objectbank.*;
import edu.stanford.nlp.parser.lexparser.*;
import edu.stanford.nlp.process.*;
import edu.stanford.nlp.trees.*;
import java.io.*;
import java.util.*;
public class StanfordParserDemo {
public static void main(String[] args) throws Exception {
// englishPCFG.ser.gz is in the download.
LexicalizedParser parser = new LexicalizedParser("/path/to/englishPCFG.ser.gz");
TokenizerFactory<Word> tokenFactory = PTBTokenizer.factory(false, new WordTokenFactory());
String sentence = "I am currently writing an NLP project in Java that tags and parses text.";
System.out.println("Sentence: " + sentence);
List<Word> words = tokenFactory.getTokenizer(new StringReader(sentence)).tokenize();
parser.parse(words);
Tree tree = parser.getBestParse();
TreePrint treePrinter = new TreePrint("penn,typedDependenciesCollapsed");
treePrinter.printTree(tree);
}
}
which prints:
Sentence: I am currently writing an NLP project in java that tags and parses text.
(ROOT
(S
(NP (PRP I))
(VP (VBP am)
(ADVP (RB currently))
(VP (VBG writing)
(NP (DT an) (NNP NLP) (NN project))
(PP (IN in)
(NP (NN java)))
(SBAR (IN that)
(S
(NP (NNS tags)
(CC and)
(NNS parses))
(VP (VBZ text))))))
(. .)))
The JAR and grammars for various languages can be downloaded here.