package com.common;

import com.swetake.util.Qrcode;
import jp.sourceforge.qrcode.QRCodeDecoder;
import com.swetake.util.Qrcode; import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock; /**
* Created by lxl on 2016-09-10.
*/
public class QRCodeUtils { /**
* 生成二维码
* @param qrContent 存入的内容
* @param w 二维码 宽度
* @param h 二维码 高度
* @param filePath 二维码 存储路径
* @param fileName 二维码 名称
* @return 返回文件名称
*/
public static String encoderQRCode(String qrContent, int w, int h, String filePath, String fileName) {
Lock lock = new ReentrantLock();
lock.lock();
String FilePath = "";
try {
Qrcode qrcode = new Qrcode();
qrcode.setQrcodeErrorCorrect('M');
qrcode.setQrcodeEncodeMode('B');
qrcode.setQrcodeVersion();
//如果给定的路径不存在创建
File fp = new File(filePath);
if (!fp.exists()) {
fp.mkdirs();
}
byte[] d = new byte[];
try {
d = qrContent.getBytes("GBK");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
BufferedImage bi = new BufferedImage(, , BufferedImage.TYPE_INT_RGB);
// createGraphics
Graphics2D g = bi.createGraphics();
// set background
g.setBackground(Color.WHITE);
g.clearRect(, , w, h);
g.setColor(Color.BLACK); if (d.length > && d.length < ) {
boolean[][] b = qrcode.calQrcode(d);
for (int ii = ; ii < b.length; ii++) {
for (int j = ; j < b.length; j++) {
if (b[j][ii]) {
g.fillRect(j * + , ii * + , , );
}
}
}
}
g.dispose();
bi.flush(); FilePath = filePath + fileName;
File f = new File(FilePath); try {
ImageIO.write(bi, "png", f);
} catch (IOException e) {
e.printStackTrace();
}
} catch (Exception e) {
} finally {
lock.unlock();
}
System.out.println("doned!");
return fileName;
} /**
* 读取二维码内容
* @param imageFile
* @return
*/
public static String decoderQRCode(File imageFile) {
Lock lock = new ReentrantLock();
lock.lock();
String decodedData = null;
try {
QRCodeDecoder decoder = new QRCodeDecoder();
BufferedImage image = null;
try {
image = ImageIO.read(imageFile);
} catch (IOException e) {
System.out.println("Error: " + e.getMessage());
} try {
decodedData = new String(decoder.decode(new J2SEImage(image)), "GBK");
System.out.println("Output Decoded Data is:" + decodedData);
} catch (Exception dfe) {
System.out.println("Error: " + dfe.getMessage());
}
} catch (Exception e) {
} finally {
lock.unlock();
}
return decodedData;
}
}

------------------------------------------------------------end--------------------------------------------------------------------------

下面部分是扩展部分

二维中不仅可以存储字符,还可以存储图片,需要将要存储的图片转换成字节流,注意图片最大只可以存储2kb左右,对你没有听错,就是2kb

/**
* 将指定的图片转换为字节
* @param path
* @return
*/
public static byte[] image2byte(String path){
byte[] data = null;
FileImageInputStream input = null;
try {
input = new FileImageInputStream(new File(path));
ByteArrayOutputStream output = new ByteArrayOutputStream();
byte[] buf = new byte[];
int numBytesRead = ;
while ((numBytesRead = input.read(buf)) != -) {
output.write(buf, , numBytesRead);
}
data = output.toByteArray();
output.close();
input.close();
}
catch (FileNotFoundException ex1) {
ex1.printStackTrace();
}
catch (IOException ex1) {
ex1.printStackTrace();
}
return data;
}
将二维码中读取出的字节转换成图片
    /**
* 将二维码中读取出的字节转换成图片
* @param data
* @param path
*/
public static void byte2image(byte[] data,String path){
if(data.length<||path.equals("")) return;
try{
FileImageOutputStream imageOutput = new FileImageOutputStream(new File(path));
imageOutput.write(data, , data.length);
imageOutput.close();
} catch(Exception ex) {
System.out.println("Exception: " + ex);
ex.printStackTrace();
}
}

完成代码

package hbxt;

import com.swetake.util.Qrcode;
import jp.sourceforge.qrcode.QRCodeDecoder;
import jp.sourceforge.qrcode.exception.DecodingFailedException;
import org.apache.commons.codec.binary.Base64; import javax.imageio.ImageIO;
import javax.imageio.stream.FileImageInputStream;
import javax.imageio.stream.FileImageOutputStream;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.*; /**
* Hello world!
*
*/
public class App
{
static int size=;
// 图片尺寸
static int imgSize = + * (size - );
public static byte[] createQRCode(String imgPath) {
byte[] result = null;
try {
Qrcode qrcodeHandler = new Qrcode();
qrcodeHandler.setQrcodeErrorCorrect('M');
qrcodeHandler.setQrcodeEncodeMode('B');
qrcodeHandler.setQrcodeVersion(size); byte[] contentBytes =image2byte(imgPath);
BufferedImage bufferImgage = new BufferedImage(imgSize, imgSize, BufferedImage.TYPE_INT_RGB); Graphics2D graphics2D = bufferImgage.createGraphics();
graphics2D.setBackground(Color.WHITE);
graphics2D.clearRect(, , imgSize, imgSize);
graphics2D.setColor(Color.BLACK);
int pixoff = ;
if (contentBytes.length > && contentBytes.length < ) {
boolean[][] matrix = qrcodeHandler.calQrcode(contentBytes);
for (int i = ; i < matrix.length; i++) {
for (int j = ; j < matrix.length; j++) {
if (matrix[j][i]) {
graphics2D.fillRect(j * + pixoff, i * + pixoff, , );
}
}
}
} else {
}
graphics2D.dispose();
bufferImgage.flush();
ByteArrayOutputStream output = new ByteArrayOutputStream();
ImageIO.write(bufferImgage, "png", output);
result = output.toByteArray();
output.close(); } catch (Exception e) {
e.printStackTrace();
}
return result;
} public static void saveImage(byte[] data, String fileName,String type) {
BufferedImage image = new BufferedImage(imgSize, imgSize, BufferedImage.TYPE_BYTE_BINARY);
ByteArrayOutputStream byteOutputStream = new ByteArrayOutputStream();
try {
ImageIO.write(image, type, byteOutputStream);
// byte[] date = byteOutputStream.toByteArray();
byte[] bytes = data;
System.out.println("path:" + fileName);
RandomAccessFile file = new RandomAccessFile(fileName, "rw");
file.write(bytes);
file.close();
} catch (IOException e) {
e.printStackTrace();
}
} /**
* 将二维码中读取出的字节转换成图片
* @param data
* @param path
*/
public static void byte2image(byte[] data,String path){
if(data.length<||path.equals("")) return;
try{
FileImageOutputStream imageOutput = new FileImageOutputStream(new File(path));
imageOutput.write(data, , data.length);
imageOutput.close();
} catch(Exception ex) {
System.out.println("Exception: " + ex);
ex.printStackTrace();
}
} /**
* 解析二维码(QRCode)
* @param imgPath 图片路径
* @return
*/
public static String decoderQRCode(String imgPath) {
// QRCode 二维码图片的文件
File imageFile = new File(imgPath);
BufferedImage bufImg = null;
String content = null;
try {
bufImg = ImageIO.read(imageFile);
QRCodeDecoder decoder = new QRCodeDecoder();
content = new String(decoder.decode(new TwoDimensionCodeImage(bufImg)), "utf-8");
} catch (IOException e) {
System.out.println("Error: " + e.getMessage());
e.printStackTrace();
} catch (DecodingFailedException dfe) {
System.out.println("Error: " + dfe.getMessage());
dfe.printStackTrace();
}
return content;
} /**
* 将指定的图片转换为字节
* @param path
* @return
*/
public static byte[] image2byte(String path){
byte[] data = null;
FileImageInputStream input = null;
try {
input = new FileImageInputStream(new File(path));
ByteArrayOutputStream output = new ByteArrayOutputStream();
byte[] buf = new byte[];
int numBytesRead = ;
while ((numBytesRead = input.read(buf)) != -) {
output.write(buf, , numBytesRead);
}
data = output.toByteArray();
output.close();
input.close();
}
catch (FileNotFoundException ex1) {
ex1.printStackTrace();
}
catch (IOException ex1) {
ex1.printStackTrace();
}
return data;
} public static void main(String[] args) {
byte[] imgs=App.createQRCode("d:/2.gif");
App.saveImage(imgs, "D:/1.png", "png");
System.out.println(imgs);
try {
Thread.sleep();
} catch (InterruptedException e) {
e.printStackTrace();
}
decoderQRCode("D:/1.png"); }
}

扩展类:

package hbxt;

import jp.sourceforge.qrcode.data.QRCodeImage;

import java.awt.image.BufferedImage;

/**
* Created by Administrator on 2016-10-20.
*/
public class TwoDimensionCodeImage implements QRCodeImage {
BufferedImage bufImg; public TwoDimensionCodeImage(BufferedImage bufImg) {
this.bufImg = bufImg;
} @Override
public int getHeight() {
return bufImg.getHeight();
} @Override
public int getPixel(int x, int y) {
return bufImg.getRGB(x, y);
} @Override
public int getWidth() {
return bufImg.getWidth();
} }

maven:

<dependency>
<groupId>com.xiongyingqi</groupId>
<artifactId>qrcode</artifactId>
<version>0.1.</version>
</dependency>

qr 生成二维码的更多相关文章

  1. php qr生成二维码

    二维码就是用在平面上用特定的几何图形记录数据信息的,QR码是常见的一种二维码.推荐使用生成QR码的php类库PHP QR Code. 例子: <?php   ini_set('display_e ...

  2. Javascript生成二维码(QR)

    网络上已经有非常多的二维码编码和解码工具和代码,很多都是服务器端的,也就是说需要一台服务器才能提供二维码的生成.本着对服务器性能的考虑,这种小事情都让服务器去做,感觉对不住服务器,尤其是对于大流量的网 ...

  3. QR code 扩展生成二维码

    include './phpqrcode/phpqrcode.php';  //引入QR库 QRcode::png("leo", 'qrcode.png', 'L', 10);  ...

  4. C#通过第三方组件生成二维码(QR Code)和条形码(Bar Code)

    用C#如何生成二维码,我们可以通过现有的第三方dll直接来实现,下面列出几种不同的生成方法: 1):通过QrCodeNet(Gma.QrCodeNet.Encoding.dll)来实现 1.1):首先 ...

  5. 使用PHP QR Code生成二维码

    使用PHP QR Code生成二维码   HP QR Code是一个PHP二维码生成类库,利用它可以轻松生成二维码,官网提供了下载和多个演示demo,查看地址: http://phpqrcode.so ...

  6. 使用PHP二维码生成类库PHP QR Code生成二维码

    <?php include 'phpqrcode.php'; $value = 'http://www.helloweba.com'; //二维码内容 $errorCorrectionLevel ...

  7. 利用PHP QR Code生成二维码(带logo)

    转自:http://www.cnblogs.com/txw1958/p/phpqrcode.html HP QR Code是一个PHP二维码生成类库,利用它可以轻松生成二维码,官网提供了下载和多个演示 ...

  8. C#利用QrCode.Net生成二维码(Qr码

    http://www.cnblogs.com/Soar1991/archive/2012/03/30/2426115.html 现在网上很多应用都是用二维码来分享网址或者其它的信息.尤其在移动领域,二 ...

  9. 前端生成二维码 - Javascript生成二维码(QR)

    前段时间项目中需要动态的生成二维码,经过评估,前后端生成都可以.但后端生成会有两个问题: 没有找到正规发布出来的后端开源库. 二维码图片,会随着商品的增加而不断变多. 基于以上两个问题,决定在前端生成 ...

随机推荐

  1. unity中Android环境变量配置

    http://www.cnblogs.com/windytrees/p/7533477.html

  2. Process对象的其他属性:

    标签(空格分隔): process join方法: 在主进程运行过程中如果想并发地执行其他的任务,我们可以开启子进程,此时主进程的任务与子进程的任务分两种情况: 情况一:在主进程的任务与子进程的任务彼 ...

  3. FP增加的索引

    1.优化FP_BOM中第839行执行过慢问题,且会出现ORA-01652: 无法通过 128 (在表空间 STGTEMP 中) 扩展 temp 段ORA-06512: 在 "STG.FP_B ...

  4. NumPy 字节交换

    NumPy 字节交换 在几乎所有的机器上,多字节对象都被存储为连续的字节序列.字节顺序,是跨越多字节的程序对象的存储规则. 大端模式:指数据的高字节保存在内存的低地址中,而数据的低字节保存在内存的高地 ...

  5. 倒计时问题java

    public static void main(String args[]){ Scanner sc = new Scanner(); int x = sc.nextInt(); System.out ...

  6. java 对一个字符串去重,即去掉字符串内重复元素

    String str ="abc|efa|abc|efa|abc"; String str1 = str.replaceAll("(?s)(.)(?=.*\\1)&quo ...

  7. 对arm裸板调试的理解

    由于arm芯片一般都包含的由jtag调试这项功能,cpu向外部发出信号时,一般都要同jtag发送出去,它就像一个路口的交警一样,能够控制车辆的运行,当然在arm中指的是cpu发出的数据和地址,我们在调 ...

  8. 【Linux 线程】引出线程加锁问题

    1.多线程的问题引入 多线程的最大的特点是资源的共享,但是,当多个线程同时去操作(同时去改变)一个临界资源时,会破坏临界资源.

  9. swift4.2 - 距离传感器

    import UIKit class ViewController: UIViewController { deinit { NotificationCenter.default.removeObse ...

  10. lombok ------让代码更简洁方便

    估计在平常写代码中,都会创建entity类的实体来,都是那种创建变量,生成set get 方法,方便外部调用,你以为你很流利的操作快捷键就很方便的了? 其实不然,有一个lombok 工具可以帮我们自动 ...