zoukankan      html  css  js  c++  java
  • iconv 解决乱码问题

    [root@NGINX-APACHE-SVN pro]# file 林.txt 
    林.txt: ISO-8859 text, with no line terminators
    #在LINUX下显示乱码
    
    [root@NGINX-APACHE-SVN pro]# iconv -f GBK -t UTF-8 林.txt -o 林1.txt 
    [root@NGINX-APACHE-SVN pro]# file 林1.txt 
    林1.txt: UTF-8 Unicode text, with no line terminators
     #问题解决!
    [root@NGINX-APACHE-SVN pro]# file 林.txt 
    林.txt: ISO-8859 text, with no line terminators
    
    [root@NGINX-APACHE-SVN pro]# yum search iconv
    Loaded plugins: fastestmirror
    Loading mirror speeds from cached hostfile
     * base: mirrors.btte.net
     * extras: mirrors.tuna.tsinghua.edu.cn
     * updates: mirrors.btte.net
    base                                                                              | 3.7 kB     00:00     
    extras                                                                            | 3.4 kB     00:00     
    updates                                                                           | 3.4 kB     00:00     
    updates/primary_db                                                                | 1.4 MB     00:03     
    ========================================== N/S Matched: iconv ===========================================
    perl-Text-Iconv.x86_64 : Perl interface to iconv() codeset conversion function
    
      Name and summary matches only, use "search all" for everything.
    [root@NGINX-APACHE-SVN pro]# yum search iconv
    Loaded plugins: fastestmirror
    Loading mirror speeds from cached hostfile
     * base: mirrors.btte.net
     * extras: mirrors.tuna.tsinghua.edu.cn
     * updates: mirror.bit.edu.cn
    ========================================== N/S Matched: iconv ===========================================
    perl-Text-Iconv.x86_64 : Perl interface to iconv() codeset conversion function
    
      Name and summary matches only, use "search all" for everything.
    

    名子相同也可以:

    root@NGINX-APACHE-SVN pro]# file 20160704mysql.txt 
    20160704mysql.txt: ISO-8859 text, with CRLF line terminators
     
    [root@NGINX-APACHE-SVN pro]# iconv -f GBK -t UTF-8 20160704mysql.txt -o 20160704mysql.txt 
    [root@NGINX-APACHE-SVN pro]# file 20160704mysql.txt 
    20160704mysql.txt: UTF-8 Unicode text, with CRLF line terminators
    

     =======================================================================

    [root@NGINX-APACHE-SVN pro]# file 交互式创建apache虚拟主机.txt 
    交互式创建apache虚拟主机.txt: Bourne-Again shell script text executable
    #这是个shell肢本,但里面有中文,显示为乱码!

    同样用iconv命令来除理,结果成功了!

    [root@NGINX-APACHE-SVN pro]# iconv -f GBK -t UTF-8 交互式创建apache虚拟主机.txt -o 交互式创建apache虚拟主机.txt 

    如果去掉#!/bin/bash 再次查看:

    [root@NGINX-APACHE-SVN pro]# file  交互式创建apache虚拟主机.txt 
    交互式创建apache虚拟主机.txt: ISO-8859 text, with CRLF line terminators

    所以这个乱码的问题,可以用上面的方法去解决!!

  • 相关阅读:
    JavaScript 设计模式系列 : 单例(Singleton)模式
    JavaScript 设计模式系列 : 工厂模式
    《Python数据分析常用手册》一、NumPy和Pandas篇
    python字符串的方法及注释
    量化投资_TB交易开拓者A函数和Q函数常见组合应用
    凯利公式
    python数据分析入门学习笔记
    VBA语言基础
    VBA遍历文件夹下文件文件实用源码
    如何判断单链表里面是否有环【转载】
  • 原文地址:https://www.cnblogs.com/bass6/p/5711221.html
Copyright © 2011-2022 走看看