Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我想以 HTTP Post 之类的方式发送 XML 消息,并且我想要一个二进制属性,我该如何正确编码呢?内容类型:text/xml 字符集:utf-8
我在网上阅读过很多人说我们只需要转义诸如 <、>、"、' 和 之类的东西。但是,我也读到包含不可打印的字符是不正确的,但有一些例外。
假设我想对二进制值 0x01020304 进行编码。我该怎么做?
使用 base64 编码。
(填充,堆栈溢出不喜欢简短的答案)