html直接加载二维码图片


   
       
   

二维码字符串转图片:(axis.jar)

String qrCodeStr = “......”;//二维码字符串

String qrCodeUrl = "/Users/test";//二维码图片存放路径

byte[] buf=Base64.decode(qrCodeStr);

try {
    FileOutputStream fos = new FileOutputStream(qrCodeUrl);
    fos.write(buf);
    fos.close();
} catch (Exception e) {

    ......

}


你可能感兴趣的:(笔记)