您的位置:

二维码生成java,二维码生成器

本文目录一览:

java 如何完成二维码的制作

参考以下代码:

//创建BarcodeSettings实例

BarcodeSettings settings = new BarcodeSettings();

//设置条码类型为QR二维码

settings.setType(BarCodeType.QR_Code);       

//设置二维码数据

settings.setData("Hello 123456789");

//设置二维码显示数据

settings.setData2D("Hello 123456789");     

//设置数据类型

settings.setQRCodeDataMode(QRCodeDataMode.Alpha_Number);

//设置二维码模型宽度

settings.setX(1.0f);

//设置二维码纠错级别

settings.setQRCodeECL(QRCodeECL.H);

//创建BarCodeGenerator实例

BarCodeGenerator barCodeGenerator = new BarCodeGenerator(settings);

//根据settings生成图像数据,保存至BufferedImage实例

BufferedImage bufferedImage = barCodeGenerator.generateImage();

//保存为PNG图片

ImageIO.write(bufferedImage, "png", new File("QRCode.png"));

System.out.println("Complete!");

需要引用Spire.Barcode for java

原文:Java 生成二维码

怎么使用java生成DataMatrix格式的二维码?

参考:

import com.spire.barcode.BarCodeGenerator;

import com.spire.barcode.BarCodeType;

import com.spire.barcode.BarcodeSettings;

import javax.imageio.ImageIO;

import java.awt.*;

import java.awt.image.BufferedImage;

import java.io.File;

public class CreateDataMatrix {

  public static void main(String[] args) throws Exception {

      //生成BarcodeSettings实例

      BarcodeSettings settings = new BarcodeSettings();

      //设置条形码类型为DataMatrix

      settings.setType(BarCodeType.Data_Matrix);

      //设置条形码模型宽度

      settings.setX(1.5f);

      //设置数据和显示文本

      settings.setData("ABC 123456789ABC 123456789ABC 123456789");

      settings.setData2D("ABC 123456789ABC 123456789ABC 123456789");

      //创建BarCodeGenerator实例

      BarCodeGenerator barCodeGenerator = new BarCodeGenerator(settings);

      //根据settings生成图像数据,保存至BufferedImage实例

      BufferedImage bufferedImage = barCodeGenerator.generateImage();

      //保存为PNG图片

      ImageIO.write(bufferedImage, "png", new File("DataMatrix.png"));

      System.out.println("Complete!");

  }

}

用到了spire.barcode for java库

我已经用java生成了一个二维码了,怎样让扫描二维码后,读取到一个word文档,大神。

不用这么麻烦,直接使用二维码生成器就行了,只要上传文档,自动直接生成二维码。方便有快捷。

推荐一款目前市面上比较不错的二维码生成工具。

登录网站进入操作后台。

点击添加二维码内容。(可查看管理制作过的二维码,如果是第一次使用直接显示第三步的编辑页面。

3.编辑二维码里的内容,上传你的文档。

上传完成后保存即可生成二维码,并且生成的二维码内容支持随时修改,原码不变!

希望对你有帮助!

java 生成二维码后如何给该二维码添加信息

java可使用zxing生成二维码并为其添加信息。

以下是详细步骤:

1、创建MatrixToImageWriter类

import com.google.zxing.common.BitMatrix;   

 import javax.imageio.ImageIO;  

 import java.io.File;  

 import java.io.OutputStream;  

 import java.io.IOException;  

 import java.awt.image.BufferedImage;  

    

    

 public final class MatrixToImageWriter {  

    

   private static final int BLACK = 0xFF000000;  

   private static final int WHITE = 0xFFFFFFFF;  

    

   private MatrixToImageWriter() {}  

    

      

   public static BufferedImage toBufferedImage(BitMatrix matrix) {  

     int width = matrix.getWidth();  

     int height = matrix.getHeight();  

     BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);  

     for (int x = 0; x  width; x++) {  

       for (int y = 0; y  height; y++) {  

         image.setRGB(x, y, matrix.get(x, y) ? BLACK : WHITE);  

       }  

     }  

     return image;  

   }  

    

      

   public static void writeToFile(BitMatrix matrix, String format, File file)  

       throws IOException {  

     BufferedImage image = toBufferedImage(matrix);  

     if (!ImageIO.write(image, format, file)) {  

       throw new IOException("Could not write an image of format " + format + " to " + file);  

     }  

   }  

    

      

   public static void writeToStream(BitMatrix matrix, String format, OutputStream stream)  

       throws IOException {  

     BufferedImage image = toBufferedImage(matrix);  

     if (!ImageIO.write(image, format, stream)) {  

       throw new IOException("Could not write an image of format " + format);  

     }  

   }  

    

 }

2、生成二维码并添加信息

import java.io.File;  

import java.util.Hashtable;  

   

import com.google.zxing.BarcodeFormat;  

import com.google.zxing.EncodeHintType;  

import com.google.zxing.MultiFormatWriter;  

import com.google.zxing.WriterException;  

import com.google.zxing.common.BitMatrix;  

   

public class Test {  

   

    /** 

     * @param args 

     * @throws Exception  

     */ 

    public static void main(String[] args) throws Exception {  

        String text = "";  

        int width = 300;  

        int height = 300;  

        //二维码的图片格式  

        String format = "gif";  

        Hashtable hints = new Hashtable();  

        //内容所使用编码  

        hints.put(EncodeHintType.CHARACTER_SET, "utf-8");  

        BitMatrix bitMatrix = new MultiFormatWriter().encode(text,  

                BarcodeFormat.QR_CODE, width, height, hints);  

        //生成二维码  

        File outputFile = new File("d:"+File.separator+"new.gif");  

        MatrixToImageWriter.writeToFile(bitMatrix, format, outputFile);  

   

    }  

   

}

java生成二维码名片,内容太大,转码怎么实现

Java中字符串转码,根据实际运用的环境有以下三种方式 使用Java.lang.String这是最常用的方法,先用对应编码获取字节,然后重新构造新编码,示例代码如下: String s = "清山";   byte[] b = s.getBytes("utf-吧");//编码   String sa = new String(b, "gb二三一二");//解码:用什么字符集编码就用什么字符集解码 java.io.InputStreamReader/OutputStreamWriter:桥转换读写文件的应用中,可以使用这种方式,直接在IO流构造中转换,示例代码如下: InputStream is = new FileInputStream("C:/项目进度跟踪.txt");//文件读取   InputStreamReader isr = new InputStreamReader(is, "utf-吧");//解码   OutputStream os = new FileOutputStream("C:/项目进度跟踪_gb二三一二.txt");//文件输出   OutputStreamWriter osw = new OutputStreamWriter(os, "gb二三一二");//开始编码 java.nio.Charset使用nio中的Charset转换字符,示例代码如下: Charset inSet = Charset.forName("utf-吧");  // 解码字符集  Charset outSet = Charset.forName("gb二三一二");  // 编码字符集   CharsetDecoder de = inSet.newDecoder();  // 解码器 CharsetEncoder en = outSet.newEncoder();// 编