JavaME-suitable grammar compiler recommendations? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T11:53:42Z http://stackoverflow.com/feeds/question/658572 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/658572/javame-suitable-grammar-compiler-recommendations 1 JavaME-suitable grammar compiler recommendations? izb 2009-03-18T14:44:25Z 2009-06-04T01:19:00Z <p>I want to parse some data, and I have a BNF grammar to parse it with. Can anyone recommend any grammar compilers capable of generating code that can be used on a mobile device?</p> <p>Since this is for JavaME, the generated code must be:</p> <ul> <li>Hopefully pretty small</li> <li>Low dependencies on exotic Java libraries</li> <li>Not dependant on any runtime jar files.</li> </ul> http://stackoverflow.com/questions/658572/javame-suitable-grammar-compiler-recommendations/658626#658626 1 Answer by mmyers for JavaME-suitable grammar compiler recommendations? mmyers 2009-03-18T15:00:39Z 2009-03-18T15:00:39Z <p>I have used <a href="http://jflex.de/" rel="nofollow">JFlex</a> before, and I know it satisfies your second and third requirements. But I don't know how big the generated code might be. According to the <a href="http://jflex.de/manual.html#CodeGeneration" rel="nofollow">manual</a>, it generates a packed DFA table by default, so it might not be too bad.</p> http://stackoverflow.com/questions/658572/javame-suitable-grammar-compiler-recommendations/948138#948138 1 Answer by brianegge for JavaME-suitable grammar compiler recommendations? brianegge 2009-06-04T01:19:00Z 2009-06-04T01:19:00Z <p>The first question is do you have an existing grammar definition? When I've ported a LALR grammar to Java, I've used JFlex/CUP. </p> <p>If your starting from scratch, I'd suggest you use JavaCC/FreeCC, which is an LL(k) parser. It's quite well documented and there are not runtime dependencies. </p>