I have a gui application written in java that requires the use of the lua scripting language. I looked at LuaJava but it seems to be giving me problems. Can you recommend a good lua interpreter for java, preferably a pure java implementation.
A:
The only other Lua binding for Java I know is JNLua (Java Native Lua). I have no experience with it, so I can't tell you anything about stability.
What kind of problems are you having with LuaJava?
schot
2010-09-27 12:30:47
Three that I have noticed so far. Program just exits when lua goes into panic mode. When I try to call a function, the program does not actually call the lua function until the application quits. Bad documentation.
Dave
2010-09-27 13:41:00
+1
A:
LuaJ is a good option however it is very poorly documented. Nevertheless I got it to work and hooked up additional libraries to get the functionality I was looking for.
Dave
2010-10-04 17:38:08