The problem is still not fix completely, I tried the following scripts:
>> `java.util.GregorianCalendar`.class.newInstance().getClass()
java.util.GregorianCalendar
>> `java.util.GregorianCalendar`.class.newInstance().getTime()
java.util.GregorianCalendar
>> `java.util.GregorianCalendar`.getClass().newInstance() # this returns a String
>> `java.util.GregorianCalendar`.getClass().newInstance().getTime()
java.lang.RuntimeException: Method not found: java.lang.String#getTime([])
at _shell.main(Unknown Source)