我搜索了 Google & the File Recipes,但我还没有找到规范的方法:
cat a.txt b.txt > c.txt
在时髦。这里有一个建议:
def appendFile(File src, File target) {
def newline = System.getProperty('line.separator')
src.eachLine { line ->
target << line
target << newline
};
}
有没有更好的办法?