JavaME-suitable grammar compiler recommendations? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T11:53:42Zhttp://stackoverflow.com/feeds/question/658572http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/658572/javame-suitable-grammar-compiler-recommendations1JavaME-suitable grammar compiler recommendations?izb2009-03-18T14:44:25Z2009-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#6586261Answer by mmyers for JavaME-suitable grammar compiler recommendations?mmyers2009-03-18T15:00:39Z2009-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#9481381Answer by brianegge for JavaME-suitable grammar compiler recommendations?brianegge2009-06-04T01:19:00Z2009-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>