部分个人隐私数据,在前端进行显示时需要脱敏显示,并且从网络安全开始考虑,需要从后端进行脱敏,这里是一个脱敏显示的工具类。
/**
* 模糊化处理字符串
*
* @param str str
* @return String
*/
public static String obfuscation(String str) {
if (StringUtils.isBlank(str)) {
return str;
}
// 参照cinder,如果字符串的名称长度小于等于3,则返回默认的字符串
if (str.length() <= 3) {
return "***";
}
int strLen = str.length();
final int tmp = 2;
int obfuscationLen = (int) Math.floor(strLen * (1 - OBFUSCATION_RATE) / tmp);
if (obfuscationLen < 1) {
return str;
}
return str.subSequence(0, obfuscationLen) + StringUtils.repeat('*', strLen - tmp * obfuscationLen)
+ str.subSequence(strLen - obfuscationLen, strLen);
}
来源:oschina
链接:https://my.oschina.net/edisonOnCall/blog/4317520