标签: java python encoding base64 mp3
我正在使用python的base64.b64encode()函数来编码文件(txt,mp3等) 我需要java等效函数。目前我使用函数Base64.getEncoder().encodeToString(content.getBytes());对文件进行编码。 txt 的结果相同文件(在java和python中)但在mp3 文件的情况下不同。
base64.b64encode()
Base64.getEncoder().encodeToString(content.getBytes());
java中是否有任何编码方法可以获得相同的结果?如果没有,其他编码方案可以在两种语言中获得相同的结果吗?