日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

java生成微信小程序二维码,跳转指定页面

發布時間:2023/12/8 编程问答 31 豆豆
生活随笔 收集整理的這篇文章主要介紹了 java生成微信小程序二维码,跳转指定页面 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

前提需要:

  • 微信的access_token
  • 跳轉頁面:pages/index/index
  • 代碼實現:

    //獲取微信小程序二維碼//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生成微信小程序二维码,跳转指定页面的全部內容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。