📄 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(发邮件)和POP3(收邮件)线程
* @throws IOException
*/
public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
new ConnectionSMTPServer();
new ConnectionPOP3Server();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -