中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
兰西县| 万盛区| 宣武区| 沅陵县| 平果县| 汪清县| 聂拉木县| 常宁市| 沙田区| 扎囊县| 中阳县| 靖宇县| 托克逊县| 边坝县| 南郑县| 南平市| 隆回县| 天门市| 镇原县| 巩义市| 河池市| 玉环县| 樟树市| 西安市| 宜都市| 阜阳市| 聂拉木县| 老河口市| 兴城市| 民县| 南宁市| 阜平县| 商洛市| 拜泉县| 南郑县| 阳信县| 连山| 易门县| 桐城市| 澄迈县| 苍南县|