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.
我一直在 unix util for ex 的许多 utils 中看到 base64 编码存在一些差异:在 java 和 python 中,如果我编码b,Yg==但在 unix 中,Ygo= 我需要在 java 和 python 中使用 unix 的 b64。我如何使它们保持一致?
b
Yg==
Ygo=
禁止换行。
echo -n "b" | ...
或者添加它。
>>> 'b\n'.encode('base64') 'Ygo=\n'