Groovy代码示例 – 文件操作
读取文件内容
groovy读取文件很方便,可以像这样读取文件内容到字符串中:
String fileContents = new File('/path/to/file').text
如果需要指定字符编码的话,可以这样:
String fileContents = new File('/path/to/file').getText('UTF-8')
版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/05/07/groovy-code-example-file/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。
THE END
1
二维码
打赏
海报
Groovy代码示例 – 文件操作
读取文件内容
groovy读取文件很方便,可以像这样读取文件内容到字符串中:
String fileContents = new File('/path/to/file').text
如果需要指定字……
文章目录
关闭
共有 0 条评论