?? mailserver.java
字號:
package com.softeem.myMail;
import com.softeem.myMail.pop3.POP3Server;
import com.softeem.myMail.smtp.SMTPServer;
public class MailServer {
public static void main(String[] args) {
System.out.println("SMTPServer start........");
SMTPServer smtpServer = new SMTPServer();
new Thread(smtpServer).start();
System.out.println("SMTP Server listenning.....");
POP3Server pop3Server = new POP3Server();
new Thread(pop3Server).start();
System.out.println("POP3 Server listenning.....");
System.out.println("Mail Server started successfully.....");
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -