Context:
把目录下的文件内容,全部复制到另一个文件中。
问题:
用简单的 destfile << srcfile 英文没问题,中文会出现乱码
然后srcfile.getText("GBK"),中文奇数结尾会出现乱码
原因:
因为中文系统 默认字符集是GBK,如果读写不制定,就会拿 *** 作系统默认的GBK。但文件保存的是UTF-8,所以转换就会有问题
解决办法:
统一输入与输出的字符集,都用UTF-8
def sourcePath = "app/src/main/java"//def sourcePath = "app/src/androIDTest/java"def sourceDir = new file(sourcePath)def destfile = new file('copySource.java')if (!destfile.exists()) { destfile.createNewfile();}def copySourcecopySource = { file srcfile -> if (srcfile == null || !srcfile.exists()) { println "file is null or not exits" return; } println "Handle file ${srcfile.name}" if (srcfile.isDirectory()) { srcfile.Listfiles().each { file -> copySource(file) } } else { if (srcfile.name.endsWith('.java')) { println "Start copy ${srcfile.name}" destfile.append(srcfile.getText("UTF-8"),"UTF-8") } }}copySource(sourceDir)总结
以上是内存溢出为你收集整理的解决Groovy复制文件的乱码全部内容,希望文章能够帮你解决解决Groovy复制文件的乱码所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)