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

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > java >内容正文

java

Java 微信公众号导出所有粉丝(openId)

發布時間:2023/11/30 java 24 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Java 微信公众号导出所有粉丝(openId) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

由于公眾號換了公司主體,需要做遷移,玩家的openId數據需要做處理。

(我是按我要的json格式,將粉絲導成了1萬條數據的一個json文件)

?文件格式:

{"info":[{"openId":"ogVous494ltuNmO4zHb1seHeGLSk"}] }

?

package exportFansFromPublic;import java.io.FileWriter; import java.io.PrintWriter; import java.util.HashMap; import java.util.List; import java.util.Map; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.odao.weixin.api.support.AccessTokenKit; import com.odao.weixin.api.support.HttpKit;/*** 導出公眾號粉絲* @author wangfj*/ public class ExportFansFromPublic { @SuppressWarnings({ "unchecked", "static-access","rawtypes"})public static void main(String[] args) throws Exception { String token = AccessTokenKit.getTokenNew("appId", "app秘鑰");String accesstoken = (String) ((Map) JSON.parseObject(token, Map.class)).get("access_token");Map<String,String> params = new HashMap<String,String>();params.put("access_token", accesstoken);String nextOpenId = "";for(int i=1;i<=50;i++){ //我這了定的50,是根據公眾號粉絲數量來的,一個文件一萬條,你們自己算if(!"".equals(nextOpenId)){params.put("next_openid", nextOpenId);}//根據appId,appSecret獲取數據粉絲openId(1次1萬條)//格式:{"data":{"openid":["oneOpenId,twoOpenId"]},"next_openid":"theNextOpenId"}try{String data = HttpKit.get("https://api.weixin.qq.com/cgi-bin/user/get",params);JSONObject json = (JSONObject) JSONObject.parse(data);String openId = json.get("data").toString();JSONObject open = (JSONObject) JSONObject.parse(openId);String openIds = open.get("openid").toString();JSONArray arr= JSONObject.parseArray(openIds);List<String> list = arr.toJavaObject(arr, List.class);nextOpenId = writerJson(list,i);}catch(Exception e){System.out.println("導出完畢");break;} }}public static String writerJson(List<String> list,int fileName){String nextOpenId = "";FileWriter fw = null; PrintWriter out = null; try { // 指定生成txt的文件路徑 fw = new FileWriter("C:/Users/admin/Desktop/fan/"+fileName+".json"); out = new PrintWriter(fw); out.println("{");out.println("\t\"info\":[");for(int i=0;i<list.size();i++){if(i!=list.size()-1){out.println("\t\t{\"openId\":\""+list.get(i)+"\"},");}else{nextOpenId = list.get(i);out.println("\t\t{\"openId\":\""+list.get(i)+"\"}");}}out.println("\t]");out.println("}");} catch (Exception e) { e.printStackTrace();} finally { try { out.close(); fw.close(); out.flush(); // 由于此處用到了緩沖流,如果數據量過大,不進行flush操作,某些數據將依舊 存在于內從中而不會寫入文件,此問題一定要注意 } catch (Exception e) { e.printStackTrace(); } } return nextOpenId;} }

?

轉載于:https://www.cnblogs.com/wangfajun/p/8399585.html

總結

以上是生活随笔為你收集整理的Java 微信公众号导出所有粉丝(openId)的全部內容,希望文章能夠幫你解決所遇到的問題。

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