As it turns out, the address has already been parsed for you. Because of JavaMail's silly extra layer of abstraction, it's returning InternetAddress
objects as their Address
superclass. Address
objects are pretty much useless. You need to cast them back down to InternetAddress
and then just get the email part:
Address[] froms = message.getFrom();
String email = froms == null ? null : ((InternetAddress) froms[0]).getAddress();
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…