phone-number-geo icon indicating copy to clipboard operation
phone-number-geo copied to clipboard

离线查询手机号归属地

Results 3 phone-number-geo issues
Sort by recently updated
recently updated
newest added

1933737**** https://cx.shouji.360.cn/phonearea.php?number=1933737**** 麻烦看下是否是问题

几种算法中都存在未指定字符集编码 导致不同环境下会出现乱码的情况。都出现在lookup方法中,将bytes转成String的地方,需要手动传入字符编码: 将String oriString = new String(bytes)改为String oriString = new String(bytes, StandardCharsets.UTF_8)即可