由于javax.xml.bind
模块在Java 9中被弃用,因此可以使用org.apache.commons.codec.binary.Base64
类进行转换。
JAVA 8
byte[] imageBytes = javax.xml.bind.DatatypeConverter.DatatypeConverter.parseBase64Binary(base64ImageString);
JAVA 9
byte[] data = org.apache.commons.codec.binary.Base64.decodeBase64(crntImage);
如果你的base64图片带前缀data:image/png;base64,iVBORw0...
,那你需要移除这部分:
String base64Image = imgStr.split(",")[1];
更详细内容请参考:
- Java中Base64类型的字符串与图片的相互转换;
- Convert base64 string to image;
- Write Base64-encoded image to file;
- DatatypeConverter vs Base64;
最新评论
本来在正常下载,突然就不能下载,并出现报错:a socket operation was attempted to an unreachable network。请问是什么原因呢
试了,还是不行,能不能更新一下
试了,确实不行,能不能更新一下
也推荐一下我自己写的 https://twitdown.com