程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#中的字符編碼問題

C#中的字符編碼問題

編輯:C#入門知識

C#中的字符編碼問題


該文件的編碼為GB18030,每行的寬度為23個字符,其中第1-8列為員工姓名,第10-23列為工資額。現在我們要寫一個C#程序求出該單位員工的平均工資,如下所示:

1width=11using System;
2width=11using System.IO;
3width=11using System.Text;
4width=11
5width=11namespace Skyiv.Ben.Test
6width=11{
7width=11 sealed class Avg
8width=11 {
9width=11 static void Main()
10width=11 {
11width=11 try
12width=11 {
13width=11 Encoding encode = Encoding.GetEncoding(GB18030);
14width=11 using (StreamReader sr = new StreamReader(salary.txt, encode))
15width=11 {
16width=11 decimal avg = 0;
17width=11 long rows = 0;
18width=11 for (; ; rows++)
19width=11 {
20width=11 string s = sr.ReadLine();
21width=11 if (s == null) break;
22width=11 decimal salary = Convert.ToDecimal(s.Substring(9, 14));
23width=11 avg += salary;
24width=11 }
25width=11 avg /= rows;
26width=11 Console.WriteLine(avg.ToString(N2));
27width=11 }
28width=11 }
29width=11 catch (Exception ex)
30width=11 {
31width=11 Console.WriteLine(錯誤: + ex.Message);
32width=11 }
33width=11 }
34width=11 }
35width=11}
36width=11

運行結果如下所示:
錯誤: 索引和長度必須引用該字符串內的位置
參數名: length
稍一分析(或者使用debug工具),就知道是該程序的第22行出錯:
decimal salary = Convert.ToDecimal(s.Substring(9, 14));
實際上,C#中的string的編碼是Unicode,每個全角的漢字也只能算一個字符,所以salary.txt中的第一行只有20個字符,第二行是21個字符,第三行是19個字符,均沒有達到23個字符,所以s.Substring(9, 14)會拋出異常。實際上,只要把這一行改為以下語句就行了:
decimal salary = Convert.ToDecimal(encode.GetString(encode.GetBytes(s), 9, 14));
重新編譯後再運行就可以得到正確的結果了: 329,218,792.83。
其實,更好的辦法是把該程序的13-27行替換為以下語句:

width=11 const int bytesPerRow = 23 + 2;
width=11 Encoding encode = Encoding.GetEncoding(GB18030);
width=11 using (BinaryReader br = new BinaryReader(new FileStream(salary.txt, FileMode.Open)))
width=11 {
width=11 if (br.BaseStream.Length % bytesPerRow != 0) throw new Exception(文件長度錯);
width=11 decimal avg = 0;
width=11 long rows = br.BaseStream.Length / bytesPerRow;
width=11 for (long i = 0; i < rows; i++)
width=11 {
width=11 byte [] bs = br.ReadBytes(bytesPerRow);
width=11 decimal salary = Convert.ToDecimal(encode.GetString(bs, 9, 14));
width=11 avg += salary;
width=11 }
width=11 avg /= rows;
width=11 Console.WriteLine(avg.ToString(N2));
width=11 }
width=11

 

現在,假設我們的任務是生成salary.txt,以下程序能工作嗎?

1width=11using System;
2width=11using System.IO;
3width=11using System.Text;
4width=11
5width=11namespace Skyiv.Ben.Test
6width=11{
7width=11 sealed class Salary
8width=11 {
9width=11 static void Main()
10width=11 {
11width=11 try
12width=11 {
13width=11 Encoding encode = Encoding.GetEncoding(GB18030);
14width=11 string [] names = {李富貴, 容闳, 歐陽吹雪};
15width=11 decimal [] salarys = {0.01m, 2057.38m, 987654321.09m};
16width=11 using (StreamWriter sw = new StreamWriter(salary.txt, false, encode))
17width=11 {
18width=11 for (int i = 0; i < names.Length; i++)
19width=11 sw.WriteLine({0,-8} {1,14:N2}, names[i], salarys[i]);
20width=11 }
21width=11 }
22width=11 catch (Exception ex)
23width=11 {
24width=11 Console.WriteLine(錯誤: + ex.Message);
25width=11 }
26width=11 }
27width=11 }
28width=11}
29width=11

運行結果表明生成的文件中各行的寬度長短不一。怎麼辦呢?只要把程序中第19行改為:
sw.WriteLine({0} {1,14:N2}, encode.GetString(encode.GetBytes(names[i].PadRight(8)), 0, 8), salarys[i]);
就行了。

假如salary.txt文件的編碼是UTF-16,是否把程序中的
Encoding encode = Encoding.GetEncoding(GB18030);
改為:
Encoding encode = Encoding.Unicode;
就可以了呢?這個問題就留給讀者們去思考了。

設想一下,如果在不遠的將來能夠實現在所有的操作系統中,字符編碼都采用UTF-16,並且一個全角字符和一個半角在屏幕顯示和在打印機上打印出來時所占的寬度都一樣的(等寬字體的情況下,如果不是等寬字體,半角的A和i所占的寬度也不一樣)。這時,也就不需要全角和半角概念了(反正大家都一樣,全角也就是半角),也就不存在本文中所討論的問題了,就象現在英語國家的程序員不會有這個問題一樣(對他們來說根本就不存在全角字符的概念)。

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved