标签:code image getc output vat tput font 微软雅黑 try
private String shareQrCode(String content) {/**
// ewmurl =compoundPath;
// File file= new File(ewmurl);
// ImageIO.write(bufferedImage2, "jpg", file);
// System.out.println("图片生成完毕"+ewmurl);
ByteArrayOutputStream stream = new ByteArrayOutputStream();
ImageIO.write(bufferedImage2, "png", stream);
ewmurl = Base64.encode(stream.toByteArray());
} catch (Exception e) {
e.printStackTrace();
}
return ewmurl;
}
标签:code image getc output vat tput font 微软雅黑 try
原文地址:https://blog.51cto.com/tianjian/2549757