📄 mailserver.java
字号:
package com.softeem.mail;
import com.softeem.mail.pop3.POP3Server;
import com.softeem.mail.smtp.SMTPServer;
//邮件总服务器
public class MailServer {
public static void main(String[] args) {
SystemOut.out("邮件服务器启动 ...");
SystemOut.out("SMTP服务器启动 ...");
SMTPServer smtpServer = new SMTPServer();
smtpServer.start();
SystemOut.out("POP3服务器启动 ...");
POP3Server pop3Server = new POP3Server();
pop3Server.start();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -