Groovy语言读取Properties文件怎么读

原文地址

def props = new Properties()
new File("message.properties").withInputStream { 
  stream -> props.load(stream) 
}