gpt4 book ai didi

c# - 如何从 txt 文件中正确读取瑞典语字符

转载 作者:太空狗 更新时间:2023-10-29 18:16:29 25 4
gpt4 key购买 nike

我正在读取一个充满瑞典字符(如 äåö)的文件(逐行),但我该如何读取和保存包含瑞典字符的字符串。这是我的代码,我使用的是 UTF8 编码:

TextReader tr = new StreamReader(@"c:\testfile.txt", System.Text.Encoding.UTF8, true);
tr.ReadLine() //returns a string but Swedish characters are not appearing correctly...

最佳答案

您需要将 System.Text.Encoding.UTF8 更改为 System.Text.Encoding.GetEncoding(1252)。见下文

        System.IO.TextReader tr = new System.IO.StreamReader(@"c:\testfile.txt", System.Text.Encoding.GetEncoding(1252), true);
tr.ReadLine(); //returns a string but Swedish characters are not appearing correctly

关于c# - 如何从 txt 文件中正确读取瑞典语字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13851173/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com