美文网首页
java中检查字符串是否经过base64编码

java中检查字符串是否经过base64编码

作者: yu_yue | 来源:发表于2018-05-16 10:42 被阅读2次

    public static boolean isBase64Encode(String content){
    if(content.length()%4!=0){
    return false;
    }
    String pattern = "^[a-zA-Z0-9/+]*={0,2}$";
    return Pattern.matches(pattern, content);
    }

    相关文章

      网友评论

          本文标题:java中检查字符串是否经过base64编码

          本文链接:https://www.haomeiwen.com/subject/vkfpdftx.html