我是靠谱客的博主 娇气香氛,最近开发中收集的这篇文章主要介绍Gradle自动化构建(七) Groovy file,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

###file
def file = new File(’…/…/hjGroovy.iml’)
//file.eachLine { println it } // 读取文件每一行 , ResourceGroovyMethods 中提供的 方法
String content = file.getText() // 获取文件中所有字符
def list = file.readLines() // 读取文件每行,返回每行字符串的集合

def reader = file.withReader { // 获取Reader对象,进行文件操作
    reader ->
    char[] buf = new char[100]
    reader.read(buf) // 读取文件中的前 100 个字符
    return buf
}
//println reader // 打印

// 复制文本文件,二进制文件的复制?  file.withDataInputStream {} ?  file.withDataOutputStream {} ?
def copy(String srcPath, String dstPath) {
    try {
        def srcFile = new File(srcPath)
        def dstFile = new File(dstPath)
        if (!dstFile.exists()) dstFile.createNewFile()
        srcFile.withReader { reader ->
            def lines = reader.readLines()
            dstFile.withWriter { writer -> // 获取Writer对象,可以对文件进行写的操作 , groovy会自动关闭流
                lines.each { line ->
                    writer.append(line+'rn')
                }
            }
        }
    } catch (Exception e) { }
}
copy('E:\gradle\a.txt', 'E:\gradle\copy.txt')

// 序列化与反序列化
class ABC {
    String name
    int age
}
def saveObject(Object object, String path) {
    try {
        //首先创建目标文件
        def desFile = new File(path)
        if (!desFile.exists()) desFile.createNewFile()
        desFile.withObjectOutputStream {
            out -> out.writeObject(object)
        }
    } catch (Exception e) { }
}
def readObject(String path) {
    def obj = null
    try {
        def file = new File(path)
        if (file == null || !file.exists()) return null
        //从文件中读取对象
        file.withObjectInputStream {
            input -> obj = input.readObject()
            println obj==null
        }
    } catch (Exception e) { }
    return obj
}
def po = new ABC(name: 'abc', age: 26)
saveObject(po, 'E:\gradle\abc.bin')
def ret = (ABC) readObject('E:\gradle\abc.bin')
println "name is ${ret.name}, age is ${ret.age}"

最后

以上就是娇气香氛为你收集整理的Gradle自动化构建(七) Groovy file的全部内容,希望文章能够帮你解决Gradle自动化构建(七) Groovy file所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部