什么你说你不会:
1.首先加入二维码需要的架包。(认真看了,我只教一遍)安装包已经放上来了,需要的直接下载。
2.将架包接入项目。
3.编写代码。
//支持中文格式
Map<EncodeHintType,String> hints=new HashMap<>();
hints.put(EncodeHintType.CHARACTER_SET,"utf-8");
hints.put(EncodeHintType.MARGIN,"1");
//生成二维码
int w=220;
int h=220;
String text="你学会了吗?";
try {
QRCodeWriter writer=new QRCodeWriter();
BitMatrix encode= writer.encode(text, BarcodeFormat.QR_CODE,w,h,hints);
BufferedImage image= MatrixToImageWriter.toBufferedImage(encode);
ImageIO.write(image,"jpg",new File("qr1.jpg"));
} catch (Exception e) {
e.printStackTrace();
}
这样就生成了吗?什么你说你不信,那你还不快扫一下。