问答详情
源自:2-4 获取文件内容起止位置

使用RandomAccessFile读取中文乱码

网上面说的

new String(ra.readLine().getBytes("ISO-8859-1"),"utf-8")

并没有起作用啊

提问者:慕哥7076891 2019-02-24 11:19

个回答

  • 慕数据1456139
    2019-04-02 16:02:28

    String fileName = new String(str.substring(beginIndex, endIndex).getBytes("iso-8859-1"),"utf-8");

    亲测可行