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.
我正在使用 IMAP 协议使用 java 邮件从 Google 服务器获取邮件。我检索到的邮件按降序排列。如何根据到达日期首先检索最近的邮件?
消息在到达时被存储。编号最高的消息应该是最新的。只需以相反的顺序访问它们。
您可以简单地反转 for 循环顺序,将 for 循环启动为
for(int i=messages.length -1; i>=0; i--){}
希望能帮助到你