从outlook导入email地址

outlook有一种email地址格式,采用逗号分隔开字段,扩展名叫CSV。
例如:
"姓名","称谓","单位名称","部门","职务","邮政地址","邮政编码","电话","传真","统一编码","其他电话","单位其他","移动电话","呼机","主页","电子邮件","备注"

程序打开文件,每行读取
只用第一个逗号前的字符串作为姓名,email地址匹配格式取第一个(位置无关)
于是写下粗陋程序:
 private static final String repmail ="([//w.-]+[@]{1}((//w)+[.]){1,3}(//w)+)";
 private static final String repname =".+?,";
 Pattern mailPattern = Pattern.compile(repmail );
  Pattern namePattern = Pattern.compile(repname);


  File file = new File("test.CSV");
  FileInputStream is = new FileInputStream(file);
  BufferedReader br = new BufferedReader(new InputStreamReader(is));
        String input = null;
  ArrayList list = new ArrayList();
   while((input = br.readLine())!=null){
    Matcher matchermail = mailPattern.matcher(input);
    Matcher matchername = namePattern.matcher(input);
    String[] card = new String[2];
    if(matchername.find()){
      card[0] = matchername.group(0).replaceAll("/"","");
    }
       if(matchermail.find()){
         card[1] = matchermail.group(0);
    }
    if(card[0]==null || card[0].equals("") || card[1]==null || card[1].equals("")){
      continue;
    }
    list.add(card);
  }
//输出
  for(int i=0;i<list.size();i++){
          System.out.println(((String[])list.get(i))[0] + ":" + ((String[])list.get(i))[1]);
  }

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值