java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > Java手机号脱敏

Java编写日志手机号脱敏工具类

作者:帅气的涛啊

在开发过程中,很容易将用户敏感信息,例如手机号码、身份证等,打印在日志平台,本文将利用Java编写一个日志手机号脱敏工具类,感兴趣的可以了解下

背景

在开发过程中,很容易将用户敏感信息,例如手机号码、身份证等,打印在日志平台。为了保护用户数据,又不影响日志的打印,需要将日志中的敏感信息进行脱敏。

效果

没看明白,强烈建议 pull项目,执行一下项目中SensitiveUtils#main方法。

特性

使用

输入为字符串/对象及单Json路径

// 传入对象
User user = new User();
user.setName("xiaoming");
user.setPhone("13455556666");
String strResult4 = SensitiveUtils.desMobilePhone(user, "phone");
System.out.println(strResult4); // {"phone":"134****6666","name":"xiaoming"}

// 传入json字符串
String str1 = "{\"name\":\"xiaoming\",\"phone\":\"13455556666\"}";
String strResult5 = SensitiveUtils.desMobilePhone(str1, "phone");
System.out.println(strResult5); // {"phone":"134****6666","name":"xiaoming"}

输入为字符串/对象及多Json路径

上图中,如果要脱敏全部手机号,路径则为 :phone , parent#phone

String str8 = "[{\"name\":\"xiaoliu\",\"phone\":\"13522222222\",\"parent\":[{\"name\":\"oldliu\",\"phone\":\"13533333333\"}]},{\"name\":\"xiaowang\",\"phone\":\"13500000000\",\"parent\":[{\"name\":\"oldwang\",\"phone\":\"13511111111\"},{\"name\":\"oldzhang\",\"phone\":\"13555555555\"}]}]";
String strResult8 = SensitiveUtils.desMobilePhone(str8, new HashSet<>(Arrays.asList("phone", "parent#phone")));
System.out.println(strResult8); // [{"parent":[{"phone":"135****3333","name":"oldliu"}],"phone":"135****2222","name":"xiaoliu"},{"parent":[{"phone":"135****1111","name":"oldwang"},{"phone":"135****5555","name":"oldzhang"}],"phone":"135****0000","name":"xiaowang"}]

上图中,如果要脱敏全部手机号,路径则为 :phone , parent#phone

String str9 = "{\"name\":\"xiaowang\",\"phone\":\"13500000000\",\"parent\":{\"name\":\"oldwang\",\"phone\":\"13511111111\"}}";
String strResult9 = SensitiveUtils.desMobilePhone(str9, new HashSet<>(Arrays.asList("phone", "parent#phone")));
System.out.println(strResult9);

已知缺陷

暂不支持连续俩层数组结构的JSON字符串/对象

暂不支持对String以外类型脱敏

暂不支持字符串中【对象JSON字符串】脱敏

{
    "info": "{\"data\":\"{\\\"phone\\\":\\\"13444444444\\\"}\"}"
}

未来优化方向

到此这篇关于Java编写日志手机号脱敏工具类的文章就介绍到这了,更多相关Java手机号脱敏内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文