ANTLRInputStream and ANTLRFileStream are deprecated, what are the alternatives?
If I use ANTLRFileStream antlrFileStream = new ANTLRFileStream("myfile.testlang"); or ANTLRInputStream input = new ANTLRInputStream( new FileInputStream("myfile.testlang") ); Compiler shows deprecation error for both the classes what is alternative? Ameer Tamboli You can use the CharStreams class instead of the deprecated classes as below. CharStream codePointCharStream = CharStreams.fromFileName("myfile.testlang"); TESTLANGLexer lexer = new TESTLANGLexer(codePointCharStream); TESTLANGParser parser = new TESTLANGParser(new CommonTokenStream(lexer)); parser.addParseListener(new