溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java中怎么批量生成二維碼

發(fā)布時間:2021-08-07 15:10:04 來源:億速云 閱讀:312 作者:Leah 欄目:編程語言

java中怎么批量生成二維碼,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

具體內(nèi)容如下

package com.youge.test;import java.awt.Color;import java.awt.Graphics2D;import java.awt.image.BufferedImage;import java.io.File;import java.io.IOException;import java.io.UnsupportedEncodingException;import java.util.HashMap;import java.util.Map;import javax.imageio.ImageIO;import org.springframework.jdbc.core.JdbcTemplate;import org.springframework.stereotype.Repository;import com.swetake.util.Qrcode;import com.youge.util.JdbcDao;import com.youge.util.WebUtil;/** * 批量二維碼 */public class Test {  private JdbcTemplate jt = JdbcDao.getJdbcTemplate();  public static void main(String[] args) throws IOException {    Test t=new Test();    for(int i=2018700001;i<2018700003;i++){      Map<String, Object> map=new HashMap<>();      String q_qrcode=i+"";//http://www.injiaxing.com:8080/youge/mApply/home.shtml?p_qrcode=      String p_code=i+"";      map.put("q_qrcode", q_qrcode);      map.put("p_code", p_code);      t.insertQrcode(map);      t.createQrcode(i+"");    }  }  public int insertQrcode(Map<String, Object> params){    String sql=" insert into y_qrcode (q_qrcode,p_code) values(?,?)";    return jt.update(sql,params.get("q_qrcode"),params.get("p_code"));  }  public void createQrcode(String str) throws IOException{    //計算二維碼圖片的高寬比    // API文檔規(guī)定計算圖片寬高的方式 ,v是本次測試的版本號    int v =6;    int width = 67 + 12 * (v - 1);    int height = 67 + 12 * (v - 1);    Qrcode x = new Qrcode();    /**     * 糾錯等級分為     * level L : 最大 7% 的錯誤能夠被糾正;     * level M : 最大 15% 的錯誤能夠被糾正;     * level Q : 最大 25% 的錯誤能夠被糾正;     * level H : 最大 30% 的錯誤能夠被糾正;     */    x.setQrcodeErrorCorrect('L');    x.setQrcodeEncodeMode('B');//注意版本信息 N代表數(shù)字 、A代表 a-z,A-Z、B代表 其他)    x.setQrcodeVersion(v);//版本號 1-40    String qrData = "http://www.injiaxing.com:8080/youge/mApply/home.shtml?p_qrcode="+str;//內(nèi)容信息    byte[] d = qrData.getBytes("utf-8");//漢字轉格式需要拋出異常    //緩沖區(qū)    BufferedImage bufferedImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_BGR);    //繪圖    Graphics2D gs = bufferedImage.createGraphics();    gs.setBackground(Color.WHITE);    gs.setColor(Color.BLACK);    gs.clearRect(0, 0, width, height);    //偏移量    int pixoff = 2;    /**     * 容易踩坑的地方     * 1.注意for循環(huán)里面的i,j的順序,     *  s[j][i]二維數(shù)組的j,i的順序要與這個方法中的 gs.fillRect(j*3+pixoff,i*3+pixoff, 3, 3);     *  順序匹配,否則會出現(xiàn)解析圖片是一串數(shù)字     * 2.注意此判斷if (d.length > 0 && d.length < 120)     *  是否會引起字符串長度大于120導致生成代碼不執(zhí)行,二維碼空白     *  根據(jù)自己的字符串大小來設置此配置     */    if (d.length > 0 && d.length < 120) {      boolean[][] s = x.calQrcode(d);      for (int i = 0; i < s.length; i++) {        for (int j = 0; j < s.length; j++) {          if (s[j][i]) {            gs.fillRect(j * 3 + pixoff, i * 3 + pixoff, 3, 3);          }        }      }    }    gs.dispose();    bufferedImage.flush();    //設置圖片格式,與輸出的路徑    ImageIO.write(bufferedImage, "png", new File("D:/qrcode/"+str+".png"));    System.out.println("二維碼生成完畢");  }}

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業(yè)資訊頻道,感謝您對億速云的支持。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI