Verify email in Java

后端 未结 9 1492
长发绾君心
长发绾君心 2020-12-02 11:27

Is there any way to verify in Java code that an e-mail address is valid. By valid, I don\'t just mean that it\'s in the correct format (someone@domain.subdomain), but that\'

9条回答
  •  猫巷女王i
    2020-12-02 12:04

    Apache commons provides an email validator class too, which you can use. Simply pass your email address as an argument to isValid method.

提交回复
热议问题