为什么在我需要它的时候,Groovy的“metaClass”属性返回null。示例:
import net.sf.json.groovy.JsonSlurper
@Grab(group='net.sf.json-lib', module='json-lib', version='2.3', classifier='jdk15')
def printMeta(obj) {
obj.metaClass.properties.each {println "Property: ${it.name}"}
}
def raw = /{"test":"this is a test"}/
def json = new JsonSlurper().parseText(raw);
printMeta (json);
我知道JsonSlurper使用元编程,那么为什么我会得到以下内容:Caught: java.lang.NullPointerException: Cannot get property 'properties' on null object at MetaTest.printMeta(MetaTest.groovy:17) at MetaTest.run(MetaTest.groovy:24)
我已经没主意了。
谢谢!
1条答案
按热度按时间7ivaypg91#
我从来没有玩过JSON的东西,但通常当你试图在Map上调用.metaClass时会发生这种情况。
如果我事先不知道要调用的类,我通常会专门调用.getMetaClass()。否则,当我试图将Map作为模拟对象传递时,这类东西会咬我。
(This这与您通常要调用.getClass()而不是.class来获取Class对象的原因相同。)