Gradle系列知识(五)——Groovy的文件操作
先从代码开始了解//通过文件路径构建File操作对象def file = new File("D:\\demo\\静夜思.txt")//这里是一行一行读file.eachLine {line-> println(line)}看看输出结果 《静夜思》床前明月光,疑是地上霜。举头望明月,低头思故乡。groovy中的文件操作比java 要简单很多。def text = file.getText()println(text)通过file.getText()