Build Antlr4 projects with eclipse java project template.

来源:互联网 发布:wireshark是什么软件 编辑:程序博客网 时间:2024/06/07 19:54
from:https://shijinglu.wordpress.com/2015/01/22/build-antlr4-projects-with-eclipse-java-project-template/

Before taking any action, remember to install antlr4 plugin for eclipse, it can be easily found from “Eclipse Marketplace”.
1.Create an antlr4 project. This will create an simple “Hello” antlr4 project.

word-image

word-image
2.Add java project facet to the project.

word-image

word-image

word-image

3.Eclipse will automatically rebuild the project, see messages in the Console, pay attention to the default antlr-4.4-complete.jar path.

word-image

4.Or you can move the antlr4 jar file to your comfortable directory and add it the eclipse build path from therein.

word-image

word-image

5.Add destination folder of generated java files to the project as source folder.

word-image

word-image

6.Add some code to test this project, <>

word-image

word-image

// // import ANTLR's runtime librariesimport org.antlr.v4.runtime.*;import org.antlr.v4.runtime.tree.*;public class HelloRunner {public static void main( String[] args) throws Exception {// create a CharStream that reads from standard inputANTLRInputStream input = new ANTLRInputStream( System.in);// create a lexer that feeds off of input CharStreamHelloLexer lexer = new HelloLexer(input);// create a buffer of tokens pulled from the lexerCommonTokenStream tokens = new CommonTokenStream(lexer);// create a parser that feeds off the tokens bufferHelloParser parser = new HelloParser(tokens);ParseTree tree = parser.r(); // begin parsing at rule 'r'System.out.println(tree.toStringTree(parser)); // print LISP-style tree}}

7. Runt this HelloRunner.java as java application

word-image

word-image