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

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

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

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

前提需要:

  • 微信的access_token
  • 跳轉(zhuǎn)頁面:pages/index/index
  • 代碼實(shí)現(xiàn):

    //獲取微信小程序二維碼//sceneStr:頁面攜帶的參數(shù)public String getminiqrQr(String sceneStr) {String accessToken = "你自己的access_token";//隨機(jī)數(shù)代表圖片名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:頁面攜帶的參數(shù)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("調(diào)用生成微信URL接口傳參:" + param);logger.info("調(diào)用生成微信URL接口:" + urls);try {URL url = new URL(urls);HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection();httpURLConnection.setRequestMethod("POST");// 提交模式httpURLConnection.setConnectTimeout(10000);//連接超時(shí) 單位毫秒httpURLConnection.setReadTimeout(10000);//讀取超時(shí) 單位毫秒// 發(fā)送POST請(qǐng)求必須設(shè)置如下兩行httpURLConnection.setDoOutput(true);httpURLConnection.setDoInput(true);// 獲取URLConnection對(duì)象對(duì)應(yīng)的輸出流PrintWriter printWriter = new PrintWriter(httpURLConnection.getOutputStream());printWriter.write(JSON.toJSONString(param));// flush輸出流的緩沖printWriter.flush();//開始獲取數(shù)據(jù)BufferedInputStream bis = new BufferedInputStream(httpURLConnection.getInputStream());OutputStream os = new FileOutputStream(new File("二維碼生成地址"));int len;//設(shè)置緩沖寫入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 "二維碼生成地址";}

    總結(jié)

    以上是生活随笔為你收集整理的java生成微信小程序二维码,跳转指定页面的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。