Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以帮助我在阅读后如何删除消息。
我正在使用 Gmail-Imap。
我可以阅读邮件,阅读附件,但不知道如何删除邮件。
阅读此SO 帖子。
如果您使用的是 JavaMail,则应首先将其移至垃圾箱:
Folder trash = store.getFolder("[Gmail]/Bin"); for (Message m : msgs) { inbox.copyMessages(new Message[] { m }, trash); }