java中的条形码生成

我正在创建一个生成条形码的应用程序,但它没有给我条形码:应用程序返回我提供的文本.我的代码是:

Code39 code39=new Code39();
String outputStr=code39.encode("12345678", 1);
String humanTextStr=code39.getHumanText();
jLabel1.setText(outputStr);
jLabel1.setFont(new java.awt.Font("CCode39_S3",java.awt.Font.PLAIN,24));

请有人能告诉我为什么会这样吗?

解决方法:

您的应用程序返回一个文本,因为您已经告诉它获取文本而不是条形码.

请尝试以下代码:

a=jTextField24.getText();      
Code39 barcode=new Code39();      
barcode.setData(a);      
ImageIcon icon = new ImageIcon(barcode.drawBarcode());          
jLabel34.setIcon(icon);
上一篇:机器人系统仿真(十三)——Gazebo仿真环境搭建


下一篇:java – 从PHP生成和解码QR码