linuxとwindows文字符号化フォーマットの自動調整


ここ数日windowsとubuntuでコードをデバッグすることが頻繁で、文字の符号化フォーマットの違いはいつも大きな悩みをもたらして、windowsの下のデフォルトの文字の符号化フォーマットはGBK(gb 2312)で、ubuntuの下でutf-8です.おとといはコードフォーマットを保存するのに苦労しましたが、今日はgoogleで一時的にいい方法を見つけました.
ubuntuの下に文字符号化フォーマット調整コマンドがあります:iconv
ICONV(1)                       Debian GNU/Linux                       ICONV(1)

NAME
       iconv - Convert encoding of given files from one encoding to another

SYNOPSIS
       iconv -f encoding [-t encoding] [inputfile]...

DESCRIPTION
       The iconv program converts the encoding of characters in inputfile, or
       from the standard input if no filename is specified, from one coded
       character set to another. The result is written to standard output
       unless otherwise specified by the --output option.

       --from-code, -f encoding
              Convert characters from encoding.

       --to-code, -t encoding
              Convert characters to encoding. If not specified the encoding
              corresponding to the current locale is used.

       --list, -l
              List known coded character sets.

       -c     Omit invalid characters from output.

       --output, -o file
              Specify output file (instead of stdout).

       --silent, -s
              Suppress warnings, but not errors.

       --verbose
              Print progress information.

       --help, -?
              Give help list.

       --usage
              Give a short usage message.

       --version, -V
              Print program version.

ENCODINGS
       The values permitted for --from-code and --to-code can be listed by the
       iconv --list command, and all combinations of the listed values are
       supported. Furthermore the following two suffixes are supported:

       //TRANSLIT
              When the string "//TRANSLIT" is appended to --to-code,
              transliteration is activated.  This means that when a character
              cannot be represented in the target character set, it can be
              approximated through one or several similarly looking
              characters.

       //IGNORE
              When the string "//IGNORE" is appended to --to-code, characters
              that cannot be represented in the target character set will be
              silently discarded.


AUTHOR
       iconv was written by Ulrich Drepper as part of the GNU C Library.

       This man page was written by Joel Klecker <[email protected]>, for the
       Debian GNU/Linux system.


3rd Berkeley Distribution            lenny                            ICONV(1)

以上の紹介で皆さんはよく理解できると思います.
iconv -f gb2312 -t utf-8 a.txt > b.txt;
文字がgb 2312に符号化されたファイルa.txtをutf-8に符号化されたb.txtファイルに変換することができる.これでubuntuで正常に表示できます.みんなを助けることができることを望んで、自分も底を残して予備します.
Windowsの下であれば、wordを使って文字コードを修正することができますが、面倒で、convertが使いやすく、一括的に修正できる小さなソフトウェアがあります.みんな検索してもいいです.私もリソースエリアにアップロードしました.ダウンロードできます.http://download.csdn.net/detail/timebomb/3987420