java生成微信小程序二维码,跳转指定页面
生活随笔
收集整理的這篇文章主要介紹了
java生成微信小程序二维码,跳转指定页面
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
前提需要:
代碼實現:
//獲取微信小程序二維碼//sceneStr:頁面攜帶的參數public String getminiqrQr(String sceneStr) {String accessToken = "你自己的access_token";//隨機數代表圖片名Integer qrcodeId = (int) (1 + Math.random() * (1000 - 1 + 1));String urlQrCode = "";String urls = "https://api.weixin.qq.com/wxa/getwxacode?access_token=" + accessToken;Map<String, Object> param = new HashMap<>();//orgId:頁面攜帶的參數param.put("path", "pages/index/index?orgId=" + sceneStr);param.put("width", 430);param.put("auto_color", false);Map<String, Object> line_color = new HashMap<>();line_color.put("r", 0);line_color.put("g", 0);line_color.put("b", 0);param.put("line_color", line_color);logger.info("調用生成微信URL接口傳參:" + param);logger.info("調用生成微信URL接口:" + urls);try {URL url = new URL(urls);HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection();httpURLConnection.setRequestMethod("POST");// 提交模式httpURLConnection.setConnectTimeout(10000);//連接超時 單位毫秒httpURLConnection.setReadTimeout(10000);//讀取超時 單位毫秒// 發送POST請求必須設置如下兩行httpURLConnection.setDoOutput(true);httpURLConnection.setDoInput(true);// 獲取URLConnection對象對應的輸出流PrintWriter printWriter = new PrintWriter(httpURLConnection.getOutputStream());printWriter.write(JSON.toJSONString(param));// flush輸出流的緩沖printWriter.flush();//開始獲取數據BufferedInputStream bis = new BufferedInputStream(httpURLConnection.getInputStream());OutputStream os = new FileOutputStream(new File("二維碼生成地址"));int len;//設置緩沖寫入byte[] arr = new byte[2048];while ((len = bis.read(arr)) != -1) {os.write(arr, 0, len);os.flush();}os.close();} catch (Exception e) {e.printStackTrace();}return "二維碼生成地址";}總結
以上是生活随笔為你收集整理的java生成微信小程序二维码,跳转指定页面的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 小米生态链的战投启示
- 下一篇: 本穷鬼攒的一台用于深度学习用电脑