java base64 to file

www.la‮tu‬turi.com
java base64 to file
// write base64 encoded image to file
import java.util.Base64;

...

byte[] data = Base64.decodeBase64(base64Img);
try (OutputStream stream = new FileOutputStream("c:/xxxx/xxxx.xx")) {
    stream.write(data);
}
Created Time:2017-09-04 20:20:04  Author:lautturi