android分享网络图片到微信,QQ无法显示

编程入门 行业动态 更新时间:2024-10-06 12:18:55

android分享网络<a href=https://www.elefans.com/category/jswz/34/1770705.html style=图片到微信,QQ无法显示"/>

android分享网络图片到微信,QQ无法显示

最近在做分享功能的时候,在线图片无法显示的问题,在此记录一下
1.分享的图片路径中包含中文,将中文部分做一下编码处理就OK了,编码代码如下:

public static String encodeUrl(String url) {try {Matcher matcher = Patternpile("[\\u4e00-\\u9fa5]").matcher(url);while (matcher.find()) {String tmp = matcher.group();url = url.replaceAll(tmp, java.URLEncoder.encode(tmp, CHAR_SET));}} catch (UnsupportedEncodingException e) {e.printStackTrace();}return url;}

更多推荐

android分享网络图片到微信,QQ无法显示

本文发布于:2024-02-27 21:52:00,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1766223.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:图片   网络   android   到微信   QQ

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!