欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ping通谷歌后发送QQ邮件通知

程序员文章站 2023-11-13 11:46:58
前言   国庆期间,据说是为了防止有人在重大节日发表不正当言论,很多可以kxsw的ip都被封了,可是什么时候才会解封呢,不能没事就去ping一下吧,所以我写了个定时任务,定时ping谷歌服务器,如果ping通则发邮件通知,来看看是怎么做的吧!

前言

  国庆期间,据说是为了防止有人在重大节日发表不正当言论,很多可以kxsw的ip都被封了,可是什么时候才会解封呢,不能没事就去ping一下吧,所以我写了个定时任务,定时ping谷歌服务器,如果ping通则发邮件通知,来看看是怎么做的吧!

ping工具类

  首先保证你的电脑之前是可以访问谷歌的(*),这个类是专门用来ping谷歌的,相当于手动输入ping www.google.com

import java.io.bufferedreader;
import java.io.ioexception;
import java.io.inputstreamreader;

/**
* @author: zp
* @date: 2019-10-08 11:31
* @description:
*/
public class pingutils {

        public static boolean ping02(string ipaddress){
                // 读取的行信息
                string line =line = null;
                // 相当于cmd服务
                process exec = null;
                // ping 的结果
                boolean res = true;
                try {
                        exec = runtime.getruntime().exec("ping " + ipaddress);
                        bufferedreader br = new bufferedreader(new inputstreamreader(exec.getinputstream()));
                        // 最多执行三秒
                        long endtime = system.currenttimemillis()+3000;
                        // 测试输出行中是否有ttl字符串,有就说明ping通了
                        while ((res=true)==true&&(line = br.readline()).indexof("ttl")<0){
                                system.out.println("line = " + line);
                                res = false;
                                // 三秒还是ping不通则放弃尝试
                                if(system.currenttimemillis()>endtime){
                                        break;
                                }
                        }
                        system.out.println("line = " + line);
                } catch (ioexception e) {
                        e.printstacktrace();
                } finally {
                        exec.destroy();
                        return res;
                }
        }

}

发送邮件的工具类

发送邮件首先需要引入两个jar包:

  • maven
<dependency>
        <groupid>javax.mail</groupid>
        <artifactid>javax.mail-api</artifactid>
        <version>1.6.2</version>
</dependency>
<dependency>
        <groupid>com.sun.mail</groupid>
        <artifactid>javax.mail</artifactid>
        <version>1.6.2</version>
</dependency>
  • gradle
compile group: 'javax.mail', name: 'javax.mail-api', version: '1.6.2'
compile group: 'com.sun.mail', name: 'javax.mail', version: '1.6.2'

值得注意的是:邮箱密码是 qq邮箱开通的stmp服务后得到的客户端授权码!!!类似于sjhabsjhdabasf这种字串。

import javax.mail.message;
import javax.mail.messagingexception;
import javax.mail.session;
import javax.mail.transport;
import javax.mail.internet.addressexception;
import javax.mail.internet.internetaddress;
import javax.mail.internet.mimemessage;
import java.util.properties;

/**
* @author: zp
* @date: 2019-10-08 14:13
* @description:
*/
public class mailutils {
        public static void sendqqmail() throws addressexception, messagingexception {
                properties properties = new properties();
                // 连接协议
                properties.put("mail.transport.protocol", "smtp");
                // 主机名
                properties.put("mail.smtp.host", "smtp.qq.com");
                // 端口号
                properties.put("mail.smtp.port", 465);
                properties.put("mail.smtp.auth", "true");
                // 设置是否使用ssl安全连接 ---一般都使用
                properties.put("mail.smtp.ssl.enable", "true");
                // 设置是否显示debug信息 true 会在控制台显示相关信息
                properties.put("mail.debug", "true");
                // 得到回话对象
                session session = session.getinstance(properties);
                // 获取邮件对象
                message message = new mimemessage(session);
                // 设置发件人邮箱地址
                message.setfrom(new internetaddress("1226364229@qq.com"));
                // 设置收件人邮箱地址,可以有多个收件人
                message.setrecipients(message.recipienttype.to, new internetaddress[]{new internetaddress("313694179@qq.com")});
                // 设置邮件标题
                message.setsubject("ping结果");
                // 设置邮件内容
                message.settext("您的ip解封了,成功ping通谷歌!");
                // 得到邮差对象
                transport transport = session.gettransport();
                // 连接自己的邮箱账户,密码为qq邮箱开通的stmp服务后得到的客户端授权码!!!
                transport.connect("1226364229@qq.com", "**********");
                // 发送邮件
                transport.sendmessage(message, message.getallrecipients());
                transport.close();
        }
}

定时任务类

这个类采用的是基于schedulingconfigurer接口的,在ping通后,会修改cron表达式的值,防止重复发送邮件。(之前一分钟测一次,现在一天测一次)

import com.example.demojpa.utils.mailutils;
import com.example.demojpa.utils.pingutils;
import org.springframework.context.annotation.configuration;
import org.springframework.scheduling.annotation.enablescheduling;
import org.springframework.scheduling.annotation.schedulingconfigurer;
import org.springframework.scheduling.config.scheduledtaskregistrar;

import java.text.dateformat;
import java.text.simpledateformat;
import java.util.date;

/**
* @author: zp
* @date: 2019-10-08 16:22:20
* @description:
*/
@configuration
@enablescheduling
public class taskbasedinterface implements schedulingconfigurer {

        /**
        * 每小时执行一次
        */
        private static string cron = "0 */1 * * * ?";

        @override
        public void configuretasks(scheduledtaskregistrar taskregistrar) {
                taskregistrar.addcrontask(()-> {
                        // 测试连接
                        boolean connected = pingutils.ping02("www.google.com");
                        if(connected){
                                try {
                                        // 修改cron表达式,每天凌晨执行给我发邮件
                                        cron = "0 0 0 * * ? *";
                                        mailutils.sendqqmail();
                                        log("已成功ping通!");
                                        return;
                                } catch (exception e) {
                                        e.printstacktrace();
                                }
                        }
                        log("ping不通");
                },cron);
        }

        public static void log(string message) {
                dateformat df = new simpledateformat("yyyy-mm-dd hh:mm:ss");
                string date = df.format(new date(system.currenttimemillis()));
                system.out.println(date + " "+message);
        }
}

结果

ping通谷歌后发送QQ邮件通知

ping通谷歌后发送QQ邮件通知

后语

  能用已有的知识来做一些有趣的事真的能提高你对技术的兴趣呀,反正我是体会到了。

ping通谷歌后发送QQ邮件通知

如果觉得有用就关注我吧~