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.
因为在浏览器中还没有普遍支持通过 XHR (AJAX) 发送二进制文件,所以我需要以 base64 编码发送 PNG 图像(Content-Encoding: base64大概带有 HTTP 标头)。
Content-Encoding: base64
在泽西一侧解码 base64 编码数据的正确方法是什么?
使用其中一种decode方法com.sun.jersey.core.util.Base64。您还可以引入 Apache Commons Codec 并使用他们的 DigestUtils 类,但如果您已经在使用 Jersey 库,那完全没有必要。
decode
com.sun.jersey.core.util.Base64