Java-二维码
2018-10-10 08:39:20来源:博客园 阅读 ()
1 <!-- https://mvnrepository.com/artifact/com.google.zxing/core --> 2 <dependency> 3 <groupId>com.google.zxing</groupId> 4 <artifactId>core</artifactId> 5 <version>3.3.1</version> 6 </dependency>
1 import java.io.File; 2 import java.io.IOException; 3 import java.nio.file.Path; 4 import java.util.HashMap; 5 import com.google.zxing.BarcodeFormat; 6 import com.google.zxing.EncodeHintType; 7 import com.google.zxing.MultiFormatWriter; 8 import com.google.zxing.WriterException; 9 import com.google.zxing.client.j2se.MatrixToImageWriter; 10 import com.google.zxing.common.BitMatrix; 11 import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel; 12 13 public class Test { 14 15 public static void main(String[] args) { 16 //设置二维码像素 17 int width = 300; 18 int height = 300; 19 //二维码图片格式 20 String format = "png"; 21 //二维码当中要存储的信息 22 String content = "http://www.xiang5.com"; 23 HashMap<EncodeHintType, Comparable> hints = new HashMap<EncodeHintType, Comparable>(); 24 hints.put(EncodeHintType.ERROR_CORRECTION,ErrorCorrectionLevel.M); 25 26 //设置边距 27 try { 28 hints.put(EncodeHintType.MARGIN,2); 29 BitMatrix bitMatrix = new MultiFormatWriter().encode(content,BarcodeFormat.QR_CODE,width,height,hints); 30 Path file = new File("D:/qrcode.png").toPath(); 31 MatrixToImageWriter.writeToPath(bitMatrix,format,file); 32 } catch (WriterException e) { 33 e.printStackTrace(); 34 } catch (IOException e) { 35 e.printStackTrace(); 36 } 37 } 38 }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- Java--反射(框架设计的灵魂)案例 2020-06-11
- Java--注解 2020-06-11
- Java--反射(框架设计的灵魂) 2020-06-11
- Java--Stream流详解 2020-06-10
- 【Java-jxl插件】【Excel文件读写报错】jxl.read.biff.BiffE 2020-06-07
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash