문제

I am using JavaMail 1.5.1 and i want to do a UID SEARCH. Is this supported or do i have to issue a low level IMAP command via ((IMAPFolder) folder).doCommand(...)?

도움이 되었습니까?

다른 팁

According with the docs, this is the way:

Folder f = store.getFolder("INBOX");
UIDFolder uf = (UIDFolder)f;
Message msg = uf.getMessageByUID(uid);

You can find more here: https://javamail.java.net/nonav/docs/api/javax/mail/UIDFolder.html

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top