当向企业微信的自建应用推送消息时:消息内容最长不超过2048个字节,超过将截断。为此通过简单的拆分字符回写解决,解决方式如下
关键代码:根据非单词字符拆分字符串 String[] parts = content.split("(?<=\\W)");
private void writeResponse(Response response) {
String content = response.getData().trim();
if (StringUtils.hasText(content)) {
//回写企业微信端。若接口返回的内容字节长度超过2048时,将会截断返回
if (content.getBytes(StandardCharsets.UTF_8).length <= 2048) {
wxWorkService.sendResponse(content);
} else {
StringBuilder sb = new StringBuilder();
//根据非单词字符拆分字符串
String[] parts = content.split("(?<=\\W)");
for (String part : parts) {
if ((sb + part).getBytes(StandardCharsets.UTF_8).length > 2048) {
//达到最大字节限制,先回写
wxWorkService.sendResponse(sb.toString());
//重新开始下一个部分
sb = new StringBuilder();
}
sb.append(part);
}
//回写最后一个部分的内容
wxWorkService.sendResponse(sb.toString());
}
}
}
标签:回写,微信端,2048,content,截断,超长,sb From: https://www.cnblogs.com/52-IT-y/p/17472140.html