怎么用luaj

在场景类开头加了如下语句:
local luaj=import(“framework.luaj”)

构造函数里加了如下语句:
local args={2,3}
local sig="(II)I"
local ok,ret=luaj.callStaticMethod(“www/play91/hitmouse/Hitmouse”,“testLuaj”,args,sig)
if ok then
print(“ret=============” … ret)
else
print(“luaj error=================” … ret)
end

跑起来提示错误: :0: attempt to index global ‘LuaJavaBridge’ (a nil value)

http://www.360doc.com/content/14/0117/13/9200790_345940368.shtml 这个是廖大很早以前写的。