当前位置 博文首页 > net2ftp中文乱码,FTP读取文件列表时中文乱码解决办法

    net2ftp中文乱码,FTP读取文件列表时中文乱码解决办法

    作者:xiaoyu 时间:2021-08-19 11:55

        代码中需对编码进行设置:
        Encoding encode = Encoding.GetEncoding("GB2312");//转换中文
        StreamReader reader = new StreamReader(response.GetResponseStream(),encode);