C# ASCII GetBytes 如何设置使用哪个字符进行无法识别的转换?

发布于 2024-10-12 09:36:59 字数 277 浏览 3 评论 0原文

我正在将一些代码从本机 C++ 移植到 C#,我需要执行以下操作:

ASCII.GetBytes 当遇到无法识别的 unicode 字符时,它会返回十进制数 63 的字符(问号) )但在我的 C++ 代码中使用 WideCharToMultiByte(CP_ACP, ... ),当它遇到一个字符时,它不知道它使用的是十进制数 37(% 符号)的字符。

我的问题是我怎样才能使对于未知字符,ASCII.GetBytes 返回给我 #37 而不是 #63?

I am porting some code from native C++ to C# and I need to do the following:

ASCII.GetBytes when it encounters a unicode character it does not recognize it returns to me character with decimal number 63 (question mark) but in my C++ code using WideCharToMultiByte(CP_ACP, ... when it encounters a character it doesn't know it uses character with decimal number 37 (% sign).

My question is how can I make ASCII.GetBytes return to me #37 instead of #63 for unknown characters?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

十六岁半 2024-10-19 09:36:59

在 C# 中,您可以使用编码的 DecoderFallback/EncoderFallback 来决定其行为方式。您无法更改 Encoding.ASCII 本身的回退,但您可以克隆它,然后设置回退。这是一个例子:

using System;
using System.Text;

class Test
{    
    static void Main()
    {
        Encoding asciiClone = (Encoding) Encoding.ASCII.Clone();
        asciiClone.DecoderFallback = new DecoderReplacementFallback("%");
        asciiClone.EncoderFallback = new EncoderReplacementFallback("%");

        byte[] bytes = { 65, 200, 66 };
        string text = asciiClone.GetString(bytes);
        Console.WriteLine(text); // Prints A%B
        bytes = asciiClone.GetBytes("A\u00ffB");
        Console.WriteLine(bytes[1]); // Prints 37
    }
}

In C#, you can use the DecoderFallback/EncoderFallback of an encoding to decide how it will behave. You can't change the fallback of Encoding.ASCII itself, but you can clone it and then set the fallback. Here's an example:

using System;
using System.Text;

class Test
{    
    static void Main()
    {
        Encoding asciiClone = (Encoding) Encoding.ASCII.Clone();
        asciiClone.DecoderFallback = new DecoderReplacementFallback("%");
        asciiClone.EncoderFallback = new EncoderReplacementFallback("%");

        byte[] bytes = { 65, 200, 66 };
        string text = asciiClone.GetString(bytes);
        Console.WriteLine(text); // Prints A%B
        bytes = asciiClone.GetBytes("A\u00ffB");
        Console.WriteLine(bytes[1]); // Prints 37
    }
}
初心未许 2024-10-19 09:36:59

据推测,C++ 代码使用 lpDefaultChar = "%" 调用 WideCharToMultiByte

无法将其传递到 Encoding.GetBytes 调用中,但您可以使用 P/Invoke 调用 WideCharToMultiByte

Presumably the C++ code calls WideCharToMultiByte with lpDefaultChar = "%".

There's no way to pass this into the Encoding.GetBytes call, but you could call WideCharToMultiByte using P/Invoke.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文