如何将十六进制转换为base64
如何将十六进制字符串转换为base64?我找到了这个页面 http://home2.paulschou.net/tools/xlate/ 但我需要java中的一些函数: String base64 = ...decoder(String hex);
我在互联网上找到了一些东西,但它们很难并且使用字节数组。我正在寻找更简单的东西 非常感谢
how to convert hex string into base64 ? I found this page http://home2.paulschou.net/tools/xlate/ but I need some function in java: String base64 = ...decoder(String hex);
I found something in the Internet but they are to difficult and use byte array. I am looking for something simplier
thx a lot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
看看 Commons Codec :
Have a look at Commons Codec :
您不太可能找到直接从十六进制转换为 base-64 的东西。您需要找到或编写一个十六进制解码器和一个 base-64 编码器,并使用
byte[]
作为中间形式。将现实与您的要求进行比较:
与
You are not likely to find something that converts directly from hex to base-64. You'll need to find or write a hex decoder and a base-64 encoder, and use a
byte[]
as an intermediate form.Compare reality with what you are asking for:
versus
您可能想查看此代码。我在谷歌上找到了它
You might want to check out this code. I found it on google
首先,您必须导入 Apache Commons Codec 库!
https://commons.apache.org/proper/commons- codec/archives/1.9/index.html
这里是1.9版本的API
http://commons.apache.org/proper/ commons-codec/archives/1.9/apidocs/index.html
那么你必须遵循以下3个步骤
At first you have to import the Apache Commons Codec library!
https://commons.apache.org/proper/commons-codec/archives/1.9/index.html
Here is the API for 1.9 version
http://commons.apache.org/proper/commons-codec/archives/1.9/apidocs/index.html
Then you have to follow these 3 steps
Apache Commons 库
Javadoc:
http://commons.apache.org/codec /apidocs/org/apache/commons/codec/binary/Base64.html
http://commons.apache.org/codec /apidocs/org/apache/commons/codec/binary/Hex.html
下载:http://commons.apache.org/codec/download_codec.cgi
Apache Commons Library
Javadoc:
http://commons.apache.org/codec/apidocs/org/apache/commons/codec/binary/Base64.html
http://commons.apache.org/codec/apidocs/org/apache/commons/codec/binary/Hex.html
Download: http://commons.apache.org/codec/download_codec.cgi
我在 Scala 中的实现
My implementation in Scala