二维码生成解析器是一款实用的二维码客户端程序,支持logo图案,740Kb体积小巧,本地运行无需联网,使用java语言所写,没有java环境无法运行!
开发介绍
论坛上看到过很多二维码生成和解析的程序,有很多都是调用api接口实现的,不但需要联网才能实现而且存在一定的信息泄露隐患
从网上找了一些官方的QRcode库函数,加了个GUI封装了一下,做了个本地的二维码生成解析程序
本程序是使用java语言所写,没有java环境无法运行
主程序源码如下:
public class test {
public static void main(String[] args) throws Exception {
String text = "吾爱破解";
String imgPath = "111.jpg";
String destPath = "222.jpg";
QR.encode(text, imgPath, destPath, true);
String str = QR.decode(destPath);
System.out.println(str);
}
}