import java.io.*
if (args.size() != 2)
println ">>>>>>"
else {
def outFile = new File(args[1])
if(outFile.exists()) {
def ans
System.in.withReader {
print "File ${args[1]} is already there, you wanna to overwrite it?(y/n) "
ans = it.readLine()
println "You choose >> $ans <<"
if(it =~ /n|N/ ) {
println "Exit without changing anything..."
return
}
}
}
def printWriter = outFile.newPrintWriter()
new File(args[0]).eachLine { line ->
printWriter.println(line)
}
printWriter.flush()
printWriter.close()
}
用户登录
还没有账号?立即注册
用户注册
投稿取消
| 文章分类: |
|
还能输入300字
上传中....
你系瞎子嘛