## 二维码
1. 在代码编制上巧妙地利用构成计算机内部逻辑基础的“0”、“1”比特流的概念,使用若干个与二进制相对应的几何形体来表示文字数值信息,通过图象输入设备或光电扫描设备自动识读以实现信息自动处理。
2. 在许多种类的二维条码中,常用的码制有:
Data Matrix,MaxiCode, Aztec,QR Code, Vericode,PDF417,Ultracode,Code 49,Code 16K等,
3. QR code码是1994年由日本DW公司发明。QR来自英文「Quick Response」的缩写,即快速反应的意思,源自发明者希望QR码可让其内容快速被解码。QR码最常见于日本、韩国;并为目前日本最流行的二维空间条码。但二维码的安全性也正备受挑战,带有恶意软件和病毒正成为二维码普及道路上的绊脚石。发展与防范二维码的滥用正成为一个亟待解决的问题。
![](https://box.kancloud.cn/dea6295e90c16a0080b06c0ae6ae5b27_1229x785.png)
纠错能力越高,二维码存储的信息就越少,对二维码的清晰度要求就越低。
![](https://box.kancloud.cn/dbe41ebf7ea5fedc8e2e9417885407db_1023x632.png)
## 1. 生成二维码
### 1.1 直接用MatrixToImageWriter写入文件或者流
![](https://box.kancloud.cn/db6de5207b09c3da1f42e7bf5f16a4a4_860x447.png)
* 有问题的
* 依赖
~~~
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>core</artifactId>
<version>3.3.0</version>
</dependency>
~~~
### 1.2
~~~
package net.aexit.galaxy.earth.mediashare.qrcode;
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;
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.IOException;
import java.util.Base64;
import java.util.HashMap;
/**
* Created by dailin on 2017/11/30.
* 生成二维码工具类
*/
public class QrGenerator {
private static final int BLACK = 0xFF000000;
private static final int WHITE = 0xFFFFFFFF;
private int width = 300; //二维码宽度
private int height = 300;//二维码高度
private String format = "png"; // 二维码图片保存格式
private String contents = ""; //扫描二维码时产生的内容
/**
* 生成BitMatrix二维码
* @return BitMatrix
*/
public BitMatrix CreatQRCode() throws WriterException {
//定义二维码的参数
HashMap hints = new HashMap();
hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.M);//设置二维码的容错等级
hints.put(EncodeHintType.MARGIN, 2);//边距
return new MultiFormatWriter().encode(contents, BarcodeFormat.QR_CODE, width, height, hints);
}
public 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;
}
/**
* 将生产的二维码写入图片文件
* @param file
* @throws IOException
*/
public void writeToFile(File file) throws IOException, WriterException {
BitMatrix matrix = CreatQRCode();
BufferedImage image = toBufferedImage(matrix);
if (!ImageIO.write(image, format, file)) {
throw new IOException("Could not write an image of format " + format + " to " + file);
}
}
/**
* 将生成的二维码以二进制数组的形式返回
*/
public byte[] writeToBytes() throws WriterException, IOException {
BitMatrix matrix = CreatQRCode();
byte[] bytes = null;
try(ByteArrayOutputStream byteArray = new ByteArrayOutputStream()){
BufferedImage image = toBufferedImage(matrix);
if (!ImageIO.write(image, format, byteArray)) {
throw new IOException("faild to write an image to bytes");
}
bytes = byteArray.toByteArray();
}
return bytes;
}
/**
* 将生成的二维码以base64编码的形式返回
*/
public String writeToBase64() throws WriterException, IOException {
BitMatrix matrix = CreatQRCode();
String base64String=null;
try(ByteArrayOutputStream byteArray = new ByteArrayOutputStream()){
BufferedImage image = toBufferedImage(matrix);
if (!ImageIO.write(image, format, byteArray)) {
throw new IOException("faild to write an image to bytes");
}
byte[] bytes = byteArray.toByteArray();
base64String = Base64.getEncoder().encodeToString(bytes);
}
return base64String;
}
public int getWidth() {
return width;
}
public void setWidth(int width) {
this.width = width;
}
public int getHeight() {
return height;
}
public void setHeight(int height) {
this.height = height;
}
public String getFormat() {
return format;
}
public void setFormat(String format) {
this.format = format;
}
public String getContents() {
return contents;
}
public void setContents(String contents) {
this.contents = contents;
}
}
~~~
2. 实体类
~~~
package JavaTest.erweima;
import javax.security.auth.Subject;
/**
* Created by dailin on 2017/11/30.
*/
public class StudentInfo {
private String name ;
private String IdCard ;
private String CarType ;
private String number;
private int Subject_One_grade;
private int Subject_One_total;
private int Subject_Two_grade;
private int Subject_Two_total;
private int Subject_Three_grade;
private int Subject_Three_total;
private int Subject_Four_grade;
private int Subject_Four_total;
private Boolean IsGraduate;
public Boolean getGraduate() {
return IsGraduate;
}
public void setGraduate(Boolean graduate) {
IsGraduate = graduate;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getIdCard() {
return IdCard;
}
public void setIdCard(String idCard) {
IdCard = idCard;
}
public String getCarType() {
return CarType;
}
public void setCarType(String carType) {
CarType = carType;
}
public String getNumber() {
return number;
}
public void setNumber(String number) {
this.number = number;
}
public int getSubject_One_grade() {
return Subject_One_grade;
}
public void setSubject_One_grade(int subject_One_grade) {
Subject_One_grade = subject_One_grade;
}
public int getSubject_One_total() {
return Subject_One_total;
}
public void setSubject_One_total(int subject_One_total) {
Subject_One_total = subject_One_total;
}
public int getSubject_Two_grade() {
return Subject_Two_grade;
}
public void setSubject_Two_grade(int subject_Two_grade) {
Subject_Two_grade = subject_Two_grade;
}
public int getSubject_Two_total() {
return Subject_Two_total;
}
public void setSubject_Two_total(int subject_Two_total) {
Subject_Two_total = subject_Two_total;
}
public int getSubject_Three_grade() {
return Subject_Three_grade;
}
public void setSubject_Three_grade(int subject_Three_grade) {
Subject_Three_grade = subject_Three_grade;
}
public int getSubject_Three_total() {
return Subject_Three_total;
}
public void setSubject_Three_total(int subject_Three_total) {
Subject_Three_total = subject_Three_total;
}
public int getSubject_Four_grade() {
return Subject_Four_grade;
}
public void setSubject_Four_grade(int subject_Four_grade) {
Subject_Four_grade = subject_Four_grade;
}
public int getSubject_Four_total() {
return Subject_Four_total;
}
public void setSubject_Four_total(int subject_Four_total) {
Subject_Four_total = subject_Four_total;
}
@Override
public String toString() {
String graduation = "未结业";
String NEW_LINE = System.getProperty("line.separator");
if (IsGraduate==true)
graduation = "结业";
return "学员姓名:" + name + NEW_LINE +
"学员身份证号:" + IdCard + NEW_LINE +
"学员车型:" + CarType + NEW_LINE +
"学员编号:" + number + NEW_LINE +
"科目一:" + Subject_One_grade + "/" + Subject_One_total + NEW_LINE +
"科目二:" + Subject_Two_grade + "/" + Subject_Two_total + NEW_LINE +
"科目三:" + Subject_Three_grade + "/" + Subject_Three_total + NEW_LINE +
"科目四:" + Subject_Four_grade + "/" + Subject_Four_total + NEW_LINE +
"是否结业:" + graduation;
}
}
~~~
3. 测试类
~~~
package JavaTest.erweima;
import com.google.zxing.common.BitMatrix;
import java.io.*;
/**
* Created by dailin on 2017/11/30.
*/
public class test {
public static void main(String[] args) {
StudentInfo student = new StudentInfo();
student.setName("代林");
student.setIdCard("220122199108105513");
student.setCarType("大奔");
student.setNumber("123");
student.setSubject_One_grade(25);
student.setSubject_One_total(100);
student.setSubject_Two_grade(25);
student.setSubject_Two_total(100);
student.setSubject_Three_grade(25);
student.setSubject_Three_total(100);
student.setSubject_Four_grade(25);
student.setSubject_Four_total(100);
student.setGraduate(true);
String str = student.toString();
File file = new File("C:\\Users\\Administrator\\Desktop\\dialin.png");
ErWeiMa erweima = new ErWeiMa();
erweima.setContents(str);
try {
erweima.writeToFile(file); // 写成图片文件
byte[] bytes = erweima.writeToStream();
OutputStream baos2 = new FileOutputStream("C:\\Users\\Administrator\\Desktop\\aixin.png");
baos2.write(bytes);
} catch (Exception e) {
e.printStackTrace();
}
}
}
~~~
## 改正后
1. 底层工具类要抛出具体的异常,不要try catch拦截,否则上层无法捕捉错误信息
2. 没关闭流
~~~
/**
* 生成BitMatrix二维码
* @return BitMatrix
*/
public BitMatrix CreatQRCode() throws WriterException {
//定义二维码的参数
HashMap hints = new HashMap();
hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.M);//设置二维码的容错等级
hints.put(EncodeHintType.MARGIN, 2);//边距
return new MultiFormatWriter().encode(contents, BarcodeFormat.QR_CODE, width, height, hints);
}
public 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;
}
/**
* 将生产的二维码写入图片文件
* @param file
* @throws IOException
*/
public void writeToFile(File file) throws IOException, WriterException {
BitMatrix matrix = CreatQRCode();
BufferedImage image = toBufferedImage(matrix);
if (!ImageIO.write(image, format, file)) {
throw new IOException("Could not write an image of format " + format + " to " + file);
}
}
/**
* 将生成的二维码以二进制数组的形式返回
*/
public byte[] writeToBytes() throws WriterException, IOException {
BitMatrix matrix = CreatQRCode();
byte[] bytes = null;
// 这么写,完事后自动关闭流
try(ByteArrayOutputStream byteArray = new ByteArrayOutputStream()){
BufferedImage image = toBufferedImage(matrix);
if (!ImageIO.write(image, format, byteArray)) {
throw new IOException("faild to write an image to bytes");
}
bytes = byteArray.toByteArray();
}
return bytes;
}
~~~
- Docker
- 什么是docker
- Docker安装、组件启动
- docker网络
- docker命令
- docker swarm
- dockerfile
- mesos
- 运维
- Linux
- Linux基础
- Linux常用命令_1
- Linux常用命令_2
- ip命令
- 什么是Linux
- SELinux
- Linux GCC编译警告:Clock skew detected. 错误解决办法
- 文件描述符
- find
- 资源统计
- LVM
- Linux相关配置
- 服务自启动
- 服务器安全
- 字符集
- shell脚本
- shell命令
- 实用脚本
- shell 数组
- 循环与判断
- 系统级别进程开启和停止
- 函数
- java调用shell脚本
- 发送邮件
- Linux网络配置
- Ubuntu
- Ubuntu发送邮件
- 更换apt-get源
- centos
- 防火墙
- 虚拟机下配置网络
- yum重新安装
- 安装mysql5.7
- 配置本地yum源
- 安装telnet
- 忘记root密码
- rsync+ crontab
- Zabbix
- Zabbix监控
- Zabbix安装
- 自动报警
- 自动发现主机
- 监控MySQL
- 安装PHP常见错误
- 基于nginx安装zabbix
- 监控Tomcat
- 监控redis
- web监控
- 监控进程和端口号
- zabbix自定义监控
- 触发器函数
- zabbix监控mysql主从同步状态
- Jenkins
- 安装Jenkins
- jenkins+svn+maven
- jenkins执行shell脚本
- 参数化构建
- maven区分环境打包
- jenkins使用注意事项
- nginx
- nginx认证功能
- ubuntu下编译安装Nginx
- 编译安装
- Nginx搭建本地yum源
- 文件共享
- Haproxy
- 初识Haproxy
- haproxy安装
- haproxy配置
- virtualbox
- virtualbox 复制新的虚拟机
- ubuntu下vitrualbox安装redhat
- centos配置双网卡
- 配置存储
- Windows
- Windows安装curl
- VMware vSphere
- 磁盘管理
- 增加磁盘
- gitlab
- 安装
- tomcat
- Squid
- bigdata
- FastDFS
- FastFDS基础
- FastFDS安装及简单实用
- api介绍
- 数据存储
- FastDFS防盗链
- python脚本
- ELK
- logstash
- 安装使用
- kibana
- 安准配置
- elasticsearch
- elasticsearch基础_1
- elasticsearch基础_2
- 安装
- 操作
- java api
- 中文分词器
- term vector
- 并发控制
- 对text字段排序
- 倒排和正排索引
- 自定义分词器
- 自定义dynamic策略
- 进阶练习
- 共享锁和排它锁
- nested object
- 父子关系模型
- 高亮
- 搜索提示
- Redis
- redis部署
- redis基础
- redis运维
- redis-cluster的使用
- redis哨兵
- redis脚本备份还原
- rabbitMQ
- rabbitMQ安装使用
- rpc
- RocketMQ
- 架构概念
- 安装
- 实例
- 好文引用
- 知乎
- ACK
- postgresql
- 存储过程
- 编程语言
- 计算机网络
- 基础_01
- tcp/ip
- http转https
- Let's Encrypt免费ssl证书(基于haproxy负载)
- what's the http?
- 网关
- 网络IO
- http
- 无状态网络协议
- Python
- python基础
- 基础数据类型
- String
- List
- 遍历
- Python基础_01
- python基础_02
- python基础03
- python基础_04
- python基础_05
- 函数
- 网络编程
- 系统编程
- 类
- Python正则表达式
- pymysql
- java调用python脚本
- python操作fastdfs
- 模块导入和sys.path
- 编码
- 安装pip
- python进阶
- python之setup.py构建工具
- 模块动态导入
- 内置函数
- 内置变量
- path
- python模块
- 内置模块_01
- 内置模块_02
- log模块
- collections
- Twisted
- Twisted基础
- 异步编程初探与reactor模式
- yield-inlineCallbacks
- 系统编程
- 爬虫
- urllib
- xpath
- scrapy
- 爬虫基础
- 爬虫种类
- 入门基础
- Rules
- 反反爬虫策略
- 模拟登陆
- problem
- 分布式爬虫
- 快代理整站爬取
- 与es整合
- 爬取APP数据
- 爬虫部署
- collection for ban of web
- crawlstyle
- API
- 多次请求
- 向调度器发送请求
- 源码学习
- LinkExtractor源码分析
- 构建工具-setup.py
- selenium
- 基础01
- 与scrapy整合
- Django
- Django开发入门
- Django与MySQL
- java
- 设计模式
- 单例模式
- 工厂模式
- java基础
- java位移
- java反射
- base64
- java内部类
- java高级
- 多线程
- springmvc-restful
- pfx数字证书
- 生成二维码
- 项目中使用log4j
- 自定义注解
- java发送post请求
- Date时间操作
- spring
- 基础
- spring事务控制
- springMVC
- 注解
- 参数绑定
- springmvc+spring+mybatis+dubbo
- MVC模型
- SpringBoot
- java配置入门
- SpringBoot基础入门
- SpringBoot web
- 整合
- SpringBoot注解
- shiro权限控制
- CommandLineRunner
- mybatis
- 静态资源
- SSM整合
- Aware
- Spring API使用
- Aware接口
- mybatis
- 入门
- mybatis属性自动映射、扫描
- 问题
- @Param 注解在Mybatis中的使用 以及传递参数的三种方式
- mybatis-SQL
- 逆向生成dao、model层代码
- 反向工程中Example的使用
- 自增id回显
- SqlSessionDaoSupport
- invalid bound statement(not found)
- 脉络
- beetl
- beetl是什么
- 与SpringBoot整合
- shiro
- 什么是shiro
- springboot+shrio+mybatis
- 拦截url
- 枚举
- 图片操作
- restful
- java项目中日志处理
- JSON
- 文件工具类
- KeyTool生成证书
- 兼容性问题
- 开发规范
- 工具类开发规范
- 压缩图片
- 异常处理
- web
- JavaScript
- 基础语法
- 创建对象
- BOM
- window对象
- DOM
- 闭包
- form提交-文件上传
- td中内容过长
- 问题1
- js高级
- js文件操作
- 函数_01
- session
- jQuery
- 函数01
- data()
- siblings
- index()与eq()
- select2
- 动态样式
- bootstrap
- 表单验证
- 表格
- MUI
- HTML
- iframe
- label标签
- 规范编程
- layer
- sss
- 微信小程序
- 基础知识
- 实践
- 自定义组件
- 修改自定义组件的样式
- 基础概念
- appid
- 跳转
- 小程序发送ajax
- 微信小程序上下拉刷新
- if
- 工具
- idea
- Git
- maven
- svn
- Netty
- 基础概念
- Handler
- SimpleChannelInboundHandler 与 ChannelInboundHandler
- 网络编程
- 网络I/O
- database
- oracle
- 游标
- PLSQL Developer
- mysql
- MySQL基准测试
- mysql备份
- mysql主从不同步
- mysql安装
- mysql函数大全
- SQL语句
- 修改配置
- 关键字
- 主从搭建
- centos下用rpm包安装mysql
- 常用sql
- information_scheme数据库
- 值得学的博客
- mysql学习
- 运维
- mysql权限
- 配置信息
- 好文mark
- jsp
- jsp EL表达式
- C
- test