반응형 Mail1 Java 메일 읽기 Java 메일 읽기 자바 메일을 읽기 위해서는 메일 서버에서 POP 또는 IMAP 프로토콜 지원이 필요합니다. import javax.mail.*; import javax.mail.search.FlagTerm; import java.util.*; public class MailReadUtil { public void read() { Store store = null; Folder inbox = null; try { Properties props = new Properties(); Session msgSession = Session.getDefaultInstance(props); store = msgSession.getStore("imaps"); store.connect("imap.gmail.com", ".. 2023. 5. 16. 이전 1 다음 반응형