From 1eb0409b06a3a6a938cba0aa445694737b7c5c70 Mon Sep 17 00:00:00 2001
From: huanghongfa <huanghongfa123456>
Date: 星期五, 23 七月 2021 10:16:39 +0800
Subject: [PATCH] 修改拉取公众号文章中文乱码问题

---
 springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/WxOfficialApi.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/WxOfficialApi.java b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/WxOfficialApi.java
index 9aa69de..1130d79 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/WxOfficialApi.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/WxOfficialApi.java
@@ -73,7 +73,7 @@
         Map<String, Object> map = new HashMap<>();
         map.put("type", "news"); // news表示图文类型的素材,具体看API文档
         map.put("offset", 0);
-        map.put("count", 10);
+        map.put("count", 5);
         // 将map转换成json字符串
         String paramBody = JSON.toJSONString(map); // 这里用了Alibaba的fastjson
 
@@ -87,7 +87,7 @@
         int len = -1;
         StringBuffer sb = new StringBuffer();
         while((len = in.read(b)) != -1) {
-            sb.append(new String(b,0,len));
+            sb.append(new String(b,0,len,"UTF-8"));
         }
 
         in.close();
@@ -96,7 +96,7 @@
 
 
     @ApiOperation(value = "拉取公众号列表")
-    @GetMapping("/list/noToken")
+    @GetMapping(value = "/list/noToken",produces="application/json;charset=UTF-8")
     public R pageDiscuss() throws Exception{
         WxOfficialApi officialApi = new WxOfficialApi();
 

--
Gitblit v1.7.1