flutter_filereader icon indicating copy to clipboard operation
flutter_filereader copied to clipboard

flutter代码怎样将,txt文档编码改成gbk?

Open chenguo4930 opened this issue 4 years ago • 1 comments

// txt文件在ios上显示乱码 final contents = File(fileEntity.filePath).readAsStringSync(); fileEntity.filePath = fileEntity.filePath.replaceAll('.txt', '_temp.txt'); File(fileEntity.filePath).writeAsStringSync(contents.trim(), encoding: gbk, flush: true);

我是这样处理的,但是总是会抱错:RangeError (index): Invalid value: Not in range 0..100034, -1000023

chenguo4930 avatar Nov 24 '21 13:11 chenguo4930

是用gbk编码插件造成的换一个就好

SongLinYang12138 avatar Mar 03 '23 07:03 SongLinYang12138