?? startserver.java
字號:
package com.softeem.mailserver;
import java.io.IOException;
import com.softeem.mailserver.pop3.ConnectionPOP3Server;
import com.softeem.mailserver.smtp.ConnectionSMTPServer;
public class StartServer {
/**
* @param arg啟動SMTP(發(fā)郵件)和POP3(收郵件)線程
* @throws IOException
*/
public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
new ConnectionSMTPServer();
new ConnectionPOP3Server();
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -