我们可以像 c++ 中那样使用十六进制字节和字符吗?

发布于 2024-09-27 14:45:42 字数 179 浏览 2 评论 0原文

嗯,我的问题很简单。

有什么方法可以像 C++ 一样使用十六进制值吗?

我将编写二进制文件,但为此我必须定义某些字符,例如这样。

\x00\x00\x11\x22\x33\x00\x00

我首先需要将这样的内容转换为字节数组,然后将其写入二进制文本文件。

谢谢!

Well my question is simple and straightforward.

Is there any way we can use hex values like in c++?

I am going to write binary files, but for that i will have to define certain characters like this for example.

\x00\x00\x11\x22\x33\x00\x00

I would first need to convert stuff like this to a byte array, and then write it to a binary text file.

Thanks!

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

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

发布评论

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

评论(2

夜还是长夜 2024-10-04 14:45:42

不,这是现代编译器(例如 VB.NET)的问题。当 Unicode 成为处理文本的首选方式时,字节和字符串之间不再存在一对一的映射。像 0x80 这样的代码点没有相应的字符,当您将字符串转换为字节时,它会被破坏。

您需要在代码中使用 Byte() 数组。您的示例的完全等效项是:

    Dim data As Byte() = {&H0, &H0, &H11, &H22, &H33, &H0, &H0}

No, that's a problem with modern compilers, like VB.NET's. There is no one-to-one mapping between bytes and strings anymore when Unicode became the preferred way of handling text. Codepoints like 0x80 don't have a corresponding character, it is going to get munched when you convert the string to bytes.

You'll need to work with a Byte() array in your code. The exact equivalent for your example is:

    Dim data As Byte() = {&H0, &H0, &H11, &H22, &H33, &H0, &H0}
江南烟雨〆相思醉 2024-10-04 14:45:42

这里还有另一篇关于将文本十六进制字符字符串转换为字节数组的文章。

如何将十六进制字符串转换为字节数组?

将其放入扩展 STRING 类的扩展方法:

http://msdn.microsoft.com/ en-us/library/bb384936.aspx

您最终可能会得到一行如下所示的代码:

Dim Bytes() = "\x00\x00\x11\x22\x33\x00\x00".ToBytes

这非常接近内置的感觉。

There's another post here about converting text HEX char strings to a byte array.

How can I convert a hex string to a byte array?

Put that in an extension method that extends the STRING class:

http://msdn.microsoft.com/en-us/library/bb384936.aspx

And you could end up with a line of code looking like this:

Dim Bytes() = "\x00\x00\x11\x22\x33\x00\x00".ToBytes

Which is pretty dang close to feeling built in.

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