91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c# readline如何處理不同編碼的文件

c#
小樊
92
2024-06-24 10:55:28
欄目: 編程語言

在C#中,可以使用StreamReader類來讀取不同編碼的文件,并根據需要進行處理。下面是一個示例代碼,演示如何使用StreamReader來讀取不同編碼的文件:

using System;
using System.IO;
using System.Text;

class Program
{
    static void Main()
    {
        string filePath = "example.txt";

        // 讀取UTF-8編碼的文件
        using (StreamReader sr = new StreamReader(filePath, Encoding.UTF8))
        {
            string line;
            while ((line = sr.ReadLine()) != null)
            {
                Console.WriteLine(line);
            }
        }

        // 讀取UTF-16編碼的文件
        using (StreamReader sr = new StreamReader(filePath, Encoding.Unicode))
        {
            string line;
            while ((line = sr.ReadLine()) != null)
            {
                Console.WriteLine(line);
            }
        }

        // 讀取ANSI編碼的文件
        using (StreamReader sr = new StreamReader(filePath, Encoding.Default))
        {
            string line;
            while ((line = sr.ReadLine()) != null)
            {
                Console.WriteLine(line);
            }
        }

        // 讀取指定編碼的文件
        Encoding encoding = Encoding.GetEncoding("GB2312");
        using (StreamReader sr = new StreamReader(filePath, encoding))
        {
            string line;
            while ((line = sr.ReadLine()) != null)
            {
                Console.WriteLine(line);
            }
        }
    }
}

在示例代碼中,我們使用StreamReader類分別讀取了UTF-8、UTF-16、ANSI以及指定編碼的文件,并分別指定了相應的編碼格式。通過指定不同的編碼格式,可以確保正確地讀取文件內容并進行處理。

0
南部县| 安远县| 名山县| 溧水县| 柘城县| 芒康县| 库尔勒市| 丹东市| 黑龙江省| 厦门市| 阳泉市| 延寿县| 铜川市| 平泉县| 中牟县| 资源县| 大兴区| 哈尔滨市| 永善县| 城市| 宝清县| 穆棱市| 濉溪县| 安溪县| 齐齐哈尔市| 青川县| 枣阳市| 南召县| 济源市| 汉寿县| 浦东新区| 房山区| 朝阳区| 紫阳县| 洛浦县| 临高县| 泽库县| 泌阳县| 曲周县| 丰顺县| 壶关县|