您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
如何使用Java生成二维码?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
Java的特点有哪些 1.Java语言作为静态面向对象编程语言的代表,实现了面向对象理论,允许程序员以优雅的思维方式进行复杂的编程。 2.Java具有简单性、面向对象、分布式、安全性、平台独立与可移植性、动态性等特点。 3.使用Java可以编写桌面应用程序、Web应用程序、分布式系统和嵌入式系统应用程序等。
<dependency> <groupId>com.google.zxing</groupId> <artifactId>core</artifactId> <version>3.3.0</version> </dependency> <dependency> <groupId>com.google.zxing</groupId> <artifactId>javase</artifactId> <version>3.3.0</version> </dependency>
代码如下:
@Data public class QRCodeUser { private String userName; private String userCode; private String url; //二维码跳转的链接 }
代码如下:
import java.awt.*; import java.awt.image.BufferedImage; import java.io.File; import java.io.OutputStream; import java.util.*; import java.util.List; import javax.imageio.ImageIO; import com.demo.demo.mapper.AssetsVo; import com.google.zxing.BarcodeFormat; import com.google.zxing.EncodeHintType; import com.google.zxing.MultiFormatWriter; import com.google.zxing.common.BitMatrix; import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel; import org.apache.commons.lang3.StringUtils; public class QRCodeUtil { //设置默认参数,可以根据需要进行修改 private static final int QRCOLOR = 0xFF000000; // 默认是黑色 private static final int BGWHITE = 0xFFFFFFFF; // 背景颜色 private static final int WIDTH = 180; // 二维码宽 private static final int HEIGHT = 180; // 二维码高 //设置高度常量 private static final int userNameHigh = 10; private static final int userCodehigh = -20; //设置字体宽度 private static final int strWidth = 130; /**用于设置QR二维码参数 * com.google.zxing.EncodeHintType:编码提示类型,枚举类型 * EncodeHintType.CHARACTER_SET:设置字符编码类型 * EncodeHintType.ERROR_CORRECTION:设置误差校正 * ErrorCorrectionLevel:误差校正等级,L = ~7% correction、M = ~15% correction、Q = ~25% correction、H = ~30% correction * 不设置时,默认为 L 等级,等级不一样,生成的图案不同,但扫描的结果是一样的 * EncodeHintType.MARGIN:设置二维码边距,单位像素,值越小,二维码距离四周越近 * */ private static Map<EncodeHintType, Object> hints = new HashMap<EncodeHintType, Object>() { private static final long serialVersionUID = 1L; { put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);// 设置QR二维码的纠错级别(H为最高级别)具体级别信息 put(EncodeHintType.CHARACTER_SET, "utf-8");// 设置编码方式 put(EncodeHintType.MARGIN, 0); } }; /** * 生成二维码和附带字体参数 */ private static BufferedImage createQr(QRCodeUser qrCodeUser, Font font) throws WriterException{ //设置二维码旁边的文字信息 String userName = "员工姓名:"+qrCodeUser.getUserName(); String userCode = "員工工號:"+qrCodeUser.getUserName(); String qrurl = qrCodeUser.getUrl(); //这里以百度为例 /** * MultiFormatWriter:多格式写入,这是一个工厂类,里面重载了两个 encode 方法,用于写入条形码或二维码 * encode(String contents,BarcodeFormat format,int width, int height,Map<EncodeHintType,?> hints) * contents:条形码/二维码内容 * format:编码类型,如 条形码,二维码 等 * width:码的宽度 * height:码的高度 * hints:码内容的编码类型 * BarcodeFormat:枚举该程序包已知的条形码格式,即创建何种码,如 1 维的条形码,2 维的二维码 等 * BitMatrix:位(比特)矩阵或叫2D矩阵,也就是需要的二维码 */ MultiFormatWriter multiFormatWriter = new MultiFormatWriter(); /**参数顺序分别为:编码内容,编码类型,生成图片宽度,生成图片高度,设置参数 * BitMatrix 的 get(int x, int y) 获取比特矩阵内容,指定位置有值,则返回true,将其设置为前景色,否则设置为背景色 * BufferedImage 的 setRGB(int x, int y, int rgb) 方法设置图像像素 * x:像素位置的横坐标,即列 * y:像素位置的纵坐标,即行 * rgb:像素的值,采用 16 进制,如 0xFFFFFF 白色 */ BitMatrix bm = multiFormatWriter.encode(qrurl, BarcodeFormat.QR_CODE, WIDTH, HEIGHT, hints); //创建一个图片缓冲区存放二维码图片 BufferedImage image = new BufferedImage(WIDTH, HEIGHT, BufferedImage.TYPE_INT_RGB); // 开始利用二维码数据创建Bitmap图片,分别设为黑(0xFFFFFFFF)白(0xFF000000)两色 for (int x = 0; x < WIDTH; x++) { for (int y = 0; y < HEIGHT; y++) { image.setRGB(x, y, bm.get(x, y) ? QRCOLOR : BGWHITE); } } int height = image.getHeight(); // ------------------------------------------自定义文本描述------------------------------------------------- if (StringUtils.isNotEmpty(qrCodeUser.getUserCode())) { //在内存创建图片缓冲区 这里设置画板的宽高和类型 BufferedImage outImage = new BufferedImage(600, 350, BufferedImage.TYPE_4BYTE_ABGR); //创建画布 Graphics2D outg = outImage.createGraphics(); // 在画布上画上二维码 X轴Y轴,宽度高度 outg.drawImage(image, 10, 30, image.getWidth(), image.getHeight(), null); // 画文字到新的面板 outg.setColor(Color.BLACK); // 字体、字型、字号 outg.setFont(font); //获取字体宽度 int userNameWidth = outg.getFontMetrics().stringWidth(userName); int userCodeWidth = outg.getFontMetrics().stringWidth(userCode); //drawString(文字信息、x轴、y轴)方法根据参数设置文字的坐标轴 ,根据需要来进行调整 outg.drawString(userName, 300 - userNameWidth / 2, height - userNameHigh); // 员工名字 outg.drawString(userCode, 300 - userCodeWidth / 2, height - userCodehigh); // 员工工号 // 例: outg.drawString(depatmentName, 65 - strWidth / 2, height + (outImage.getHeight() - height) / 2 - h4); 根据需求自行计算需要的宽高 outg.dispose(); outImage.flush(); image = outImage; } image.flush(); return image; } }
此时二维码已经可以生成
/** * @author: zyf * @date: 2021/4/27 * Description: 生成单条二维码附带文字信息,导出到指定路径 **/ public void drawLogoQRCode(QRCodeUser qrCodeUser) { FileOutputStream fileOutputStream = null; try { fileOutputStream = new FileOutputStream("D:"+ File.separator+"二维码" + qrCodeUser.getUserCode() + ".png"); //保存路径输出流,将图片输出到指定路径 Font fontChinese = new Font("黑体", Font.BOLD, 28); BufferedImage image = QRCodeUtil.createQr(qrCodeUser,fontChinese); boolean crateQRCode = ImageIO.write(image, "png", fileOutputStream); }catch (WriterException | IOException e) { log.error("二维码写入IO流异常",e); }finally { try { if (null != fileOutputStream){ fileOutputStream.flush(); fileOutputStream.close(); } }catch (IOException ioe){ log.error("二维码关流异常",ioe); } } }
/** * @author: zyf * @date: 2021/4/27 * Description: 批量生产二维码,导出到指定路径 **/ public void drawLogoQRCode(List<QRCodeUser> qrCodeUserList) { FileOutputStream fileOutputStream = null; //咱们简单一点,直接循环调用 try { for(QRCodeUser qrCodeUser:qrCodeUserList){ fileOutputStream = new FileOutputStream("D:"+ File.separator+"二维码" + qrCodeUser.getUserCode() + ".png"); //保存路径输出流,将图片输出到指定路径 Font fontChinese = new Font("黑体", Font.BOLD, 28); //返回的image就是二维码图片,可以根据需要进行后续的处理,比如全都写入指定文件夹进行压缩或者写入PDF文件 BufferedImage image = QRCodeUtil.createQr(qrCodeUser,fontChinese); //写出到指定路径 boolean crateQRCode = ImageIO.write(image, "png", fileOutputStream); } }catch (WriterException | IOException e) { log.error("二维码写入IO流异常",e); }finally { try { if (null != fileOutputStream){ fileOutputStream.flush(); fileOutputStream.close(); } }catch (IOException ioe){ log.error("二维码关流异常",ioe); } } }
<dependency> <groupId>com.itextpdf</groupId> <artifactId>itextpdf</artifactId> <version>5.5.13</version> </dependency> <!-- https://mvnrepository.com/artifact/com.itextpdf/itext-asian --> <dependency> <groupId>com.itextpdf</groupId> <artifactId>itext-asian</artifactId> <version>5.2.0</version> </dependency>
public static void drawLogoQRCode(OutputStream outputStream, QrCodeUser qrCodeUser) { try { Font fontChinese = new Font("黑体", Font.BOLD, 28); BufferedImage image = createQr(qrCodeUser,fontChinese); ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); //字节数组输出流 boolean createQRCode = ImageIO.write(image, "png", byteArrayOutputStream); if(!createQRCode){ log.error("二维码写入输出流失败"); } /*生成pdf*/ Document document = new Document(PageSize.A4, 0, 0, 0, 0); PdfWriter.getInstance(document, outputStream); //写出pdf document.open(); //打开文件 /*pdf写入图片*/ com.lowagie.text.Image image2 = com.lowagie.text.Image.getInstance(byteArrayOutputStream.toByteArray()); float documentWidth = document.getPageSize().getWidth() - document.leftMargin() - document.rightMargin(); float documentHeight = documentWidth / 300 * 80;// 重新设置宽高 image2.scaleAbsolute(documentWidth, documentHeight);// 重新设置宽高 document.add(image2); document.close(); //关闭文件 byteArrayOutputStream.close(); } catch (Exception e) { e.printStackTrace(); } }
Linux系统或者docker发布的项目中,不包含中文字体,会导致中文乱码,所以PDF中的中文不能显示 Linux系统中路径 /usr/share/fonts/ 下是字体文件,复制windows本地的字体文件到这里面就可以,一般使用宋体 Docker系统中,需要配置
看完上述内容,你们掌握如何使用Java生成二维码的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注亿速云行业资讯频道,感谢各位的阅读!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。