Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux系統常見問題解答 >> GnuLinux下文件的字符編碼及轉換工具

GnuLinux下文件的字符編碼及轉換工具

日期:2017/1/20 17:41:22      編輯:Linux系統常見問題解答
/*********************************************************************
 * Author  : Samson
 * Date    : 07/03/2014
 * Test platform:
 *              3.11.0-12-generic #19-Ubuntu
 *              GNU bash, version 4.2.45
 * *******************************************************************/
在GNU Linux中查看當前文件的編碼方式:

可以通過vim打開此文件後在控制模式時輸入

:set fileencoding 可以查看到當前文件的字符編碼格式,會在vim窗口下方顯示如下內容:

fileencoding=utf-8
上行的意思即是此文件的字符編碼為utf-8;
那麼如何轉換一個文件的字符編碼呢?
可以使用iconv 命令進行處理,
iconv - Convert encoding of given files from one encoding to another
格式一般為:
iconv -f utf8 -t UTF-16 foo_in.txt > foo_out.txt
意思即是將utf8字符編碼的文件轉換為字符編碼格式為utf16的格式,可使用上面的查看轉換後的文件的格式,經測試輸入的字符編碼為:

fileencoding=utf-16le

PS: 可以使用iconv --list 命令進行查看iconv支持的字符編碼格式;

Copyright © Windows教程網 All Rights Reserved