search
HomeJavajavaTutorialJava implements encoding and decoding of QR code QRCode and sample analysis

Java implements the encoding and decoding of QR code QRCode

Some of the main class libraries involved are convenient for everyone to download:

Encoding lib: Qrcode_swetake.jar (Official website introduction - - http://www.swetake.com/qr/index-e.html)                                                                                                                                                                                   through

##【1】Encoding:

Java code QRCodeEncoderHandler.java

package michael.qrcode; 
  
import java.awt.Color; 
import java.awt.Graphics2D; 
import java.awt.image.BufferedImage; 
import java.io.File; 
  
import javax.imageio.ImageIO; 
  
import com.swetake.util.Qrcode; 
  
/**
 * 二维码生成器
 * @blog http://sjsky.iteye.com
 * @author Michael
 */
public class QRCodeEncoderHandler { 
  
 /**
 * 生成二维码(QRCode)图片
 * @param content
 * @param imgPath
 */
 public void encoderQRCode(String content, String imgPath) { 
 try { 
  
 Qrcode qrcodeHandler = new Qrcode(); 
 qrcodeHandler.setQrcodeErrorCorrect('M'); 
 qrcodeHandler.setQrcodeEncodeMode('B'); 
 qrcodeHandler.setQrcodeVersion(7); 
  
 System.out.println(content); 
 byte[] contentBytes = content.getBytes("gb2312"); 
  
 BufferedImage bufImg = new BufferedImage(140, 140, 
  BufferedImage.TYPE_INT_RGB); 
  
 Graphics2D gs = bufImg.createGraphics(); 
  
 gs.setBackground(Color.WHITE); 
 gs.clearRect(0, 0, 140, 140); 
  
 // 设定图像颜色> BLACK 
 gs.setColor(Color.BLACK); 
  
 // 设置偏移量 不设置可能导致解析出错 
 int pixoff = 2; 
 // 输出内容> 二维码 
 if (contentBytes.length > 0 && contentBytes.length < 120) { 
 boolean[][] codeOut = qrcodeHandler.calQrcode(contentBytes); 
 for (int i = 0; i < codeOut.length; i++) { 
  for (int j = 0; j < codeOut.length; j++) { 
  if (codeOut[j][i]) { 
  gs.fillRect(j * 3 + pixoff, i * 3 + pixoff, 3, 3); 
  } 
  } 
 } 
 } else { 
 System.err.println("QRCode content bytes length = "
  + contentBytes.length + " not in [ 0,120 ]. "); 
 } 
  
 gs.dispose(); 
 bufImg.flush(); 
  
 File imgFile = new File(imgPath); 
  
 // 生成二维码QRCode图片 
 ImageIO.write(bufImg, "png", imgFile); 
  
 } catch (Exception e) { 
 e.printStackTrace(); 
 } 
  
 } 
  
 /**
 * @param args the command line arguments
 */
 public static void main(String[] args) { 
 String imgPath = "D:/test/twocode/Michael_QRCode.png"; 
  
 String content = "Hello 大大、小小,welcome to QRCode!"
 + "\nMyblog [ http://sjsky.iteye.com ]"
 + "\nEMail [ sjsky007@gmail.com ]" + "\nTwitter [ @suncto ]"; 
  
 QRCodeEncoderHandler handler = new QRCodeEncoderHandler(); 
 handler.encoderQRCode(content, imgPath); 
  
 System.out.println("encoder QRcode success"); 
 } 
}

The QR code image generated after running is as follows:

At this time, you can use the QR code scanning software of your mobile phone (I use: android snapshot QR code) to test it. The screenshot of successful recognition is as follows: Java implements encoding and decoding of QR code QRCode and sample analysis

Java implements encoding and decoding of QR code QRCode and sample analysis

Friends who like it can download it and give it a try, and make some business cards or things you like. Of course, Java can also decode QR code images. For details, see the content about decoding below.

【2】. Decoding:

Java code QRCodeDecoderHandler.java

package michael.qrcode; 
  
import java.awt.image.BufferedImage; 
import java.io.File; 
import java.io.IOException; 
  
import javax.imageio.ImageIO; 
  
import jp.sourceforge.qrcode.QRCodeDecoder; 
import jp.sourceforge.qrcode.data.QRCodeImage; 
import jp.sourceforge.qrcode.exception.DecodingFailedException; 
  
/**
 * @blog http://sjsky.iteye.com
 * @author Michael
 */
public class QRCodeDecoderHandler { 
  
 /**
 * 解码二维码
 * @param imgPath
 * @return String
 */
 public String decoderQRCode(String imgPath) { 
  
 // QRCode 二维码图片的文件 
 File imageFile = new File(imgPath); 
  
 BufferedImage bufImg = null; 
 String decodedData = null; 
 try { 
 bufImg = ImageIO.read(imageFile); 
  
 QRCodeDecoder decoder = new QRCodeDecoder(); 
 decodedData = new String(decoder.decode(new J2SEImage(bufImg))); 
  
 // try { 
 // System.out.println(new String(decodedData.getBytes("gb2312"), 
 // "gb2312")); 
 // } catch (Exception e) { 
 // // TODO: handle exception 
 // } 
 } catch (IOException e) { 
 System.out.println("Error: " + e.getMessage()); 
 e.printStackTrace(); 
 } catch (DecodingFailedException dfe) { 
 System.out.println("Error: " + dfe.getMessage()); 
 dfe.printStackTrace(); 
 } 
 return decodedData; 
 } 
  
 /**
 * @param args the command line arguments
 */
 public static void main(String[] args) { 
 QRCodeDecoderHandler handler = new QRCodeDecoderHandler(); 
 String imgPath = "d:/test/twocode/Michael_QRCode.png"; 
 String decoderContent = handler.decoderQRCode(imgPath); 
 System.out.println("解析结果如下:"); 
 System.out.println(decoderContent); 
 System.out.println("========decoder success!!!"); 
 } 
  
 class J2SEImage implements QRCodeImage { 
 BufferedImage bufImg; 
  
 public J2SEImage(BufferedImage bufImg) { 
 this.bufImg = bufImg; 
 } 
  
 public int getWidth() { 
 return bufImg.getWidth(); 
 } 
  
 public int getHeight() { 
 return bufImg.getHeight(); 
 } 
  
 public int getPixel(int x, int y) { 
 return bufImg.getRGB(x, y); 
 } 
  
 } 
}

The running results are as follows (the decoded content is consistent with the previously entered content):

The analysis results are as follows:

Hello big, small, welcome to QRCode!

Myblog [ http://sjsky.iteye.com ]

EMail [ sjsky007@ gmail.com ]

Twitter [ @suncto ]

========decoder success!!!

The above is the implementation of QR code QRCode in Java The encoding and decoding information has been compiled, and relevant information will be added in the future. Thank you for your support of this site!

For more articles related to Java implementation of QR code QRCode encoding and decoding and sample analysis, please pay attention to the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How do I use Maven or Gradle for advanced Java project management, build automation, and dependency resolution?How do I use Maven or Gradle for advanced Java project management, build automation, and dependency resolution?Mar 17, 2025 pm 05:46 PM

The article discusses using Maven and Gradle for Java project management, build automation, and dependency resolution, comparing their approaches and optimization strategies.

How do I create and use custom Java libraries (JAR files) with proper versioning and dependency management?How do I create and use custom Java libraries (JAR files) with proper versioning and dependency management?Mar 17, 2025 pm 05:45 PM

The article discusses creating and using custom Java libraries (JAR files) with proper versioning and dependency management, using tools like Maven and Gradle.

How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?Mar 17, 2025 pm 05:44 PM

The article discusses implementing multi-level caching in Java using Caffeine and Guava Cache to enhance application performance. It covers setup, integration, and performance benefits, along with configuration and eviction policy management best pra

How can I use JPA (Java Persistence API) for object-relational mapping with advanced features like caching and lazy loading?How can I use JPA (Java Persistence API) for object-relational mapping with advanced features like caching and lazy loading?Mar 17, 2025 pm 05:43 PM

The article discusses using JPA for object-relational mapping with advanced features like caching and lazy loading. It covers setup, entity mapping, and best practices for optimizing performance while highlighting potential pitfalls.[159 characters]

How does Java's classloading mechanism work, including different classloaders and their delegation models?How does Java's classloading mechanism work, including different classloaders and their delegation models?Mar 17, 2025 pm 05:35 PM

Java's classloading involves loading, linking, and initializing classes using a hierarchical system with Bootstrap, Extension, and Application classloaders. The parent delegation model ensures core classes are loaded first, affecting custom class loa

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools