电脑局域网设置记录

       

 

 

电脑1是旧电脑,里面的资料给新电脑。 电脑盘符-右键属性-高级共享。点击设置后

新电脑直接输入:

\\旧电脑ip

 

 

 

2.昨天上线了一个功能,符合条件的手机号要进行线索下发。结果在做时候发现数据没有入库,日志里面能搜到。但是一个个的统计里面的手机号,几万个太多了。在腾讯云上面可以下载日志,然后通过解析的方式进行。

 

 

package com.gwm.marketing;

import com.alibaba.fastjson.JSONObject;
import com.google.common.collect.Maps;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.util.Map;

/**
 * @author fanht
 * @descrpiton
 * @date 2023/2/3 09:58:22
 * @versio 1.0
 */
public class FileGetPhone {
    public static void main(String[] args) {
        Map<String,String> map = Maps.newHashMap();
        File file = new File("E:\\file-phone\\2.json");
        try {
            FileReader fr = new FileReader(file);
            BufferedReader br = new BufferedReader(fr);
            while (true){
                Object[] objects = br.lines().limit(10000).toArray();
                if (objects.length == 0){
                    break;
                }
                for(Object ob: objects){
                    String line = JSONObject.toJSONString(ob);
                    if(line.contains("phone") ){
                        int first = line.indexOf("phone");
                         line = line.substring(first+14,first+ 25) ;


                        if(map.get(line) != null){

                        }else {
                            //过滤虚拟号段
                            if(line.startsWith("170") || line.startsWith("171") || line.startsWith("174") ||
                                    line.startsWith("162") ||
                                    line.startsWith("165") ||
                                    line.startsWith("167") ||
                                    line.startsWith("140") ||
                                    line.startsWith("141") ||
                                    line.startsWith("142") ||
                                    line.startsWith("143") ||
                                    line.startsWith("144") ||
                                    line.startsWith("146")){
                                 map.put(line,line);
                            }else {

                            }
                         }

                    }
                }
            }
 
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }



    }
}

 

做个记录。

posted @ 2023-02-03 17:45  Doyourself!  阅读(60)  评论(0编辑  收藏  举报