我们可以像 c++ 中那样使用十六进制字节和字符吗?
嗯,我的问题很简单。
有什么方法可以像 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,这是现代编译器(例如 VB.NET)的问题。当 Unicode 成为处理文本的首选方式时,字节和字符串之间不再存在一对一的映射。像 0x80 这样的代码点没有相应的字符,当您将字符串转换为字节时,它会被破坏。
您需要在代码中使用 Byte() 数组。您的示例的完全等效项是:
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:
这里还有另一篇关于将文本十六进制字符字符串转换为字节数组的文章。
如何将十六进制字符串转换为字节数组?
将其放入扩展 STRING 类的扩展方法:
http://msdn.microsoft.com/ en-us/library/bb384936.aspx
您最终可能会得到一行如下所示的代码:
这非常接近内置的感觉。
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:
Which is pretty dang close to feeling built in.