I am having trouble interpreting this question.
I receive a img in JSON formated in Base64, for web developers its only do: "".
How I can make it in Java?
I am having trouble interpreting this question.
I receive a img in JSON formated in Base64, for web developers its only do: "".
How I can make it in Java?
You can use apache commons-codec for converting byte array. to base64 and from base64 to byte array. Actually, you can use guava. This artifact has base64 libraries and json. Just add com.google.guava in your maven's project.
For creating image, you can use:
InputStream in = new ByteArrayInputStream(yourbytearray);
BufferedImage bImageFromConvert = ImageIO.read(in);
ImageIO.write(bImageFromConvert, "jpg", new File("c:/yourimage.jpg"));