码迷,mamicode.com
首页 > Windows程序 > 详细

Gentoo下打开windows txt文件中文乱码问题

时间:2015-12-10 19:55:37      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:gentoo   locale   

Linux与Windows系统语言编码区别

在Linux操作系统下,我们有时打开在windows下的txt文件,发现在windows下能正常显示的txt文件出现了中文乱码。
出现这种情况的原因为两种操作系统的中文字符编码方式(压缩方式)不同,在windows环境中中文字符编码一般为gbk,而在linux环境中为utf8,这就导致了在windows下能正常显示txt文件在linux环境下打开呈现了乱码状态。

系统编码设置

locale.gen文件

# /etc/locale.gen: list all of the locales you want to have on your system## The format of each line:# <locale> <charmap>## Where <locale> is a locale located in /usr/share/i18n/locales/ and# where <charmap> is a charmap located in /usr/share/i18n/charmaps/.## All blank lines and lines starting with # are ignored.## For the default list of supported combinations, see the file:# /usr/share/i18n/SUPPORTED## Whenever glibc is emerged, the locales listed here will be automatically# rebuilt for you.  After updating this file, you can simply run `locale-gen`# yourself instead of re-emerging glibc.en_US.UTF-8 UTF-8zh_CN.UTF-8 UTF-8
  • 查看系统语言编码种类
    /usr/share/i18n/locales/目录下包含系统支持的编码语言种类

gentoo ~ # ls /usr/share/i18n/locales/en_US       en_GB     en_HK    
zh_CN       zh_TW     zh_HK
ja_JP       de_DE     ......
gentoo ~ #
  • 查看字符编码压缩方式
    /usr/share/i18n/charmaps/目录下包含系统支持的字符编码方式

    ls /usr/share/i18n/charmaps/
    ANSI_X3.110-1983.gz    IBM1026.gz         ISO-8859-16.gz
    ANSI_X3.4-1968.gz      IBM1047.gz         ISO_8859-1,GL.gz
    ARMSCII-8.gz           IBM1124.gz         ISO-8859-1.gz
    ASMO_449.gz            IBM1129.gz         ISO-8859-2.gz
    GB18030.gz             ISIRI-3342.gz      SAMI.gz
    GB_1988-80.gz          ISO_10367-BOX.gz   SAMI-WS2.gz
    GB2312.gz              ISO_10646.gz       SEN_850200_B.gz
    GBK.gz                 ISO_11548-1.gz     SEN_850200_C.
    HP-ROMAN9.gz           ISO_6937.gz        UTF-8.gz
    ......

解决方案

使用iconv命令进行文件编码转换,如乱码文件名为hello.txt,那么在终端输入如下命令:

iconv -f gbk -t utf8 hello.txt > hello.utf8.txt


本文出自 “博主:孤逐王” 博客,请务必保留此出处http://aceking.blog.51cto.com/3681913/1721597

Gentoo下打开windows txt文件中文乱码问题

标签:gentoo   locale   

原文地址:http://aceking.blog.51cto.com/3681913/1721597

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!