檢查電子郵件中的cc字段的正確地址的最佳方法是什麼?什麼是檢查電子郵件cc字段中的不正確的電子郵件地址在java中的最佳方式
例如,如果我有CC:[email protected]; [email protected]; asdfj
我怎樣才能檢測asdfj爲無效的地址?
我正在使用java。我能想到的最好的方法是使用stringtokenizer,但我不知道如何實現這一點。
我前面有代碼檢查,並抄送字段,但使用這種只爲一個電子郵件地址:
if((!Cc.equals("")) && ccat != Cc.lastIndexOf('@')) {
System.out.println("CC: address is invalid 2");
return false;
}
感謝。
相關:http://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard –
你爲什麼專注於驗證CC地址而不是TO地址?還是BCC? –