懵懂乐曲

文章
5
资源
0
加入时间
2年10月17天

Groovy File 读取中文乱码

  1.指定GBK编码 def jsontext = ""new File(filename).eachLine ("GBK"){ jsontext = jsontext+it}log.info jsontext  2.指定UTF-8编码 def jsontext = ""new File(filename).eachLine ("UTF-8"){