download mail attachment with Java

前端 未结 6 853
耶瑟儿~
耶瑟儿~ 2020-12-13 03:29

I had a look in the reference doc, and Spring seems to have pretty good support for sending mail. However, I need to login to a mail account, read the messages, and download

6条回答
  •  执念已碎
    2020-12-13 03:42

    Here is an error:

    else if ((disposition != null) && (disposition.equals(Part.ATTACHMENT)
     || disposition.equals(Part.INLINE) ) 
    

    it should be:

    else if ((disposition.equalsIgnoreCase(Part.ATTACHMENT)
     || disposition.equalsIgnoreCase(Part.INLINE))
    

    Thanks @Stevenmcherry for your answer

提交回复
热议问题