Keywords: Groovy, Reflection, 反射 The Reflection of Groovy String constant style method. Groovy支持以下的方法定义: class A { def "I am a method"() { } } Groovy是继承Java的机制的,而Java显然是不支持这种函数定义命名的.然而实际上,你是用A.class.getMethods() 或 A.metaClass.getMethods() 都能获取到带
Groovy对文件的操作 对文件的遍历 假设文件的原始内容为: hello,world 这里是北京 andorid and ios are good system 第一种方法:使用 eachLine() //1.1 new 一个File def file = new File(filepath) //1.2 groovy对文件的遍历 file.eachLine { //打印每一行内容 line -> println line } //输出 hello,world 这里是北京 andorid an