I have a Java application which receives images as Base64 string. I can convert it to byteArray as below:
byte[] imageBytes = javax.xml.bind.DatatypeConverter.parseBase64Binary(base64ImageString)
How do I save this as a downloadable URL to show that URL on my front end application for user to download and view?