真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Java怎么生成二維碼圖片

這篇文章主要介紹“Java怎么生成二維碼圖片”,在日常操作中,相信很多人在Java怎么生成二維碼圖片問題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”Java怎么生成二維碼圖片”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

我們提供的服務(wù)有:成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、微信公眾號(hào)開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、云浮ssl等。為1000多家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的云浮網(wǎng)站制作公司

簡(jiǎn)介  
ZXing    是一個(gè)開源 Java 類庫(kù)用于解析多種格式的 1D/2D 條形碼。目標(biāo)是能夠?qū)R編碼、Data Matrix、UPC的1D條形碼進(jìn)行解碼。其提供了多種平臺(tái)下的客戶端包括:J2ME、J2SE和Android。  
官網(wǎng):ZXing github倉(cāng)庫(kù)  
實(shí)戰(zhàn)  
本例演示如何在一個(gè)非 android 的 Java 項(xiàng)目中使用 ZXing 來(lái)生成、解析二維碼圖片。  
安裝  
maven項(xiàng)目只需引入依賴:  

  com.google.zxing
  core
  3.3.0


  com.google.zxing
  javase
  3.3.0
 
如果非maven項(xiàng)目,就去官網(wǎng)下載發(fā)布版本:下載地址  
生成二維碼圖片  
ZXing 生成二維碼圖片有以下步驟:  
1. com.google.zxing.MultiFormatWriter    根據(jù)內(nèi)容以及圖像編碼參數(shù)生成圖像2D矩陣。  

2. com.google.zxing.client.j2se.MatrixToImageWriter 根據(jù)圖像矩陣生成圖片文件或圖片緩存 BufferedImage 。

public void encode(String content, String filepath) throws WriterException, IOException {
  int width = 100;
  int height = 100;
  Map encodeHints = new HashMap();
  encodeHints.put(EncodeHintType.CHARACTER_SET, "UTF-8");
  BitMatrix bitMatrix = new MultiFormatWriter().encode(content, BarcodeFormat.QR_CODE, width, height, encodeHints);
  Path path = FileSystems.getDefault().getPath(filepath);
  MatrixToImageWriter.writeToPath(bitMatrix, "png", path);
}
 

解析二維碼圖片

ZXing 解析二維碼圖片有以下步驟:  
1. 使用    javax.imageio.ImageIO    讀取圖片文件,并存為一個(gè)    java.awt.image.BufferedImage   對(duì)象。  
2. 將    java.awt.image.BufferedImage    轉(zhuǎn)換為 ZXing 能識(shí)別的   com.google.zxing.BinaryBitmap    對(duì)象。  
3. com.google.zxing.MultiFormatReader    根據(jù)圖像解碼參數(shù)來(lái)解析   com.google.zxing.BinaryBitmap    。  
public String decode(String filepath) throws IOException, NotFoundException {
  BufferedImage bufferedImage = ImageIO.read(new FileInputStream(filepath));
  LuminanceSource source = new BufferedImageLuminanceSource(bufferedImage);
  Binarizer binarizer = new HybridBinarizer(source);
  BinaryBitmap bitmap = new BinaryBitmap(binarizer);
  HashMap decodeHints = new HashMap();
  decodeHints.put(DecodeHintType.CHARACTER_SET, "UTF-8");
  Result result = new MultiFormatReader().decode(bitmap, decodeHints);
  return result.getText();
}
 

到此,關(guān)于“Java怎么生成二維碼圖片”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!


名稱欄目:Java怎么生成二維碼圖片
URL分享:http://weahome.cn/article/pdphsc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部