Java掩码的几种使用例举

网友投稿 334 2023-01-11


Java掩码的几种使用例举

java掩码

private static String nameMask(String name) throws Exception {

if(name ==null)throw new Exception("请输入要掩码的字符串");

if(name.length()<=1) return name+"*";

return name.replaceAll("([\\u4e00-\\u9fa5]{1})(.*)", "$1"+createAsterisk(name.length()-1));

}

private static String createAsterisk(int len) {

StringBuffer sb = new StringBuffer();

for(int i=0;i

sb.append("*");

}

return sb.toString();

}

/**

* 对客http://户证件号码做掩码

*

* */

public static String maskCertId(String certId) throws Exception

{

ibxjsXWQSf(certId==null||certId.length()==0) return "";

if(certId.length()==18)

{

String v = certId.substring(0,4);

String end = certId.substring(certId.length()-4);

return v+StringUtils.repeat("*",8)+end;

}

else

return http://"";

}

/**

* 对客户姓名做掩码

* @throws JBOException

* */

public static String maskUserName(String userName) throws Exception

{

if(userName==null||userName.length()==0) return "";

String v = userName.substring(0,1);

return StringUtils.rightPad(v, userName.length(),"*");//StringUtils.rightPad方法做一个字符串右补齐

}

/**

* 对字符串进行脱敏处理

* @param word 被脱敏的字符

* @param startLength 被保留的开始长度 0代表不保留

* @param endLength 被保留的结束长度 0代表不保留

* @param pad 填充字符

* */

public static String wordMask(String word,int startLength ,int endLength,String pad) {

if(word==null) return StringUtils.leftPad("", startLength+endLength,pad);

if(word.length()<=startLength+endLength) return StringUtils.leftPad("", startLength+endLength,pad);

String startStr = "";

String endStr = http://"";

int padLength = 0;

if(word.length()>startLength) startStr = StringUtils.substring(word, 0,startLength);

if(word.length()>startLength+endLength) endStr = StringUtils.substring(word, word.length()-endLength);

padLength = word.length()-startLength-endLength;

return startStr + StringUtils.repeat(pad, padLength)+endStr;

}

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对我们的支持。如果你想了解更多相关内容请查看下面相关链接

sb.append("*");

}

return sb.toString();

}

/**

* 对客http://户证件号码做掩码

*

* */

public static String maskCertId(String certId) throws Exception

{

ibxjsXWQSf(certId==null||certId.length()==0) return "";

if(certId.length()==18)

{

String v = certId.substring(0,4);

String end = certId.substring(certId.length()-4);

return v+StringUtils.repeat("*",8)+end;

}

else

return http://"";

}

/**

* 对客户姓名做掩码

* @throws JBOException

* */

public static String maskUserName(String userName) throws Exception

{

if(userName==null||userName.length()==0) return "";

String v = userName.substring(0,1);

return StringUtils.rightPad(v, userName.length(),"*");//StringUtils.rightPad方法做一个字符串右补齐

}

/**

* 对字符串进行脱敏处理

* @param word 被脱敏的字符

* @param startLength 被保留的开始长度 0代表不保留

* @param endLength 被保留的结束长度 0代表不保留

* @param pad 填充字符

* */

public static String wordMask(String word,int startLength ,int endLength,String pad) {

if(word==null) return StringUtils.leftPad("", startLength+endLength,pad);

if(word.length()<=startLength+endLength) return StringUtils.leftPad("", startLength+endLength,pad);

String startStr = "";

String endStr = http://"";

int padLength = 0;

if(word.length()>startLength) startStr = StringUtils.substring(word, 0,startLength);

if(word.length()>startLength+endLength) endStr = StringUtils.substring(word, word.length()-endLength);

padLength = word.length()-startLength-endLength;

return startStr + StringUtils.repeat(pad, padLength)+endStr;

}

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对我们的支持。如果你想了解更多相关内容请查看下面相关链接


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Java调用shell脚本解决传参和权限问题的方法
下一篇:桌面程序的接口测试是(软件接口测试实战详解)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~