极光推送工具类--JpushUtil

  1. 首先引入maven依赖  或   直接下载jar包引用,具体可看官方文档:https://github.com/jpush/jpush-api-java-client
  2. 我是通过maven依赖,maven配置文件添加 以下包
    
        cn.jpush.api
        jpush-client
        3.3.10
    
    
        cn.jpush.api
        jiguang-common
        1.1.4
    
    
        io.netty
        netty-all
        4.1.6.Final
        compile
    
    
        com.google.code.gson
        gson
        2.3
    
    
        org.slf4j
        slf4j-api
        1.7.7
    
    
    
    
        org.slf4j
        slf4j-log4j12
        1.7.7
    
    
        log4j
        log4j
        1.2.17
    
  3. 在网上找到 并修改后的JpushUtil工具类;亲测可用

    package org.jeecg.common.util;

    import java.util.ArrayList;
    import java.util.List;

    import cn.jiguang.common.resp.APIConnectionException;
    import cn.jiguang.common.resp.APIRequestException;
    import cn.jpush.api.JPushClient;
    import cn.jpush.api.push.PushResult;
    import cn.jpush.api.push.model.Message;
    import cn.jpush.api.push.model.Options;
    import cn.jpush.api.push.model.Platform;
    import cn.jpush.api.push.model.PushPayload;
    import cn.jpush.api.push.model.audience.Audience;
    import cn.jpush.api.push.model.notification.AndroidNotification;
    import cn.jpush.api.push.model.notification.IosNotification;
    import cn.jpush.api.push.model.notification.Notification;
    import cn.jpush.api.schedule.ScheduleResult;
    import lombok.extern.slf4j.Slf4j;

    /**
     * 
    * @ClassName: JpushUtil  
    * @Description: 极光推送工具类
    * @author WangJing
    * @date 2020年6月12日  
    *
     */
    @Slf4j
    public class JpushUtil {
        
        private final static String APPKEY = "********";

        private final static String MASTERSECRET = "********";

        private static JPushClient jPushClient = new JPushClient(MASTERSECRET, APPKEY);
        
        /**
         * 发送给标识用户
         * @param alias                设备标识
         * @param notificationTitle 通知内容标题
         * @param msgTitle            消息内容标题
         * @param msgContent        消息内容
         * @param extrasparam        扩展字段(传跳转的链接)
         * @param uuid                日志记录标识
         * @return                    false推送失败,true推送成功
         */
        public static Boolean sendToAlias(List alias, String notificationTitle, String msgTitle, String msgContent,
                String extrasparam, String uuid) {
            Boolean result = false;
            try {
                PushPayload pushPayload = buildPushObject(alias, notificationTitle, msgTitle, msgContent, extrasparam);
                log.info("uuid:{}, JpushUtil--sendToAlias--jpush--participation:{} ", uuid,
                        pushPayload.toJSON().toString());
                PushResult sendPush = jPushClient.sendPush(pushPayload);
                if (sendPush.getResponseCode() == 200) {
                    result = true;
                }
                log.info("uuid:{}, JpushUtil--sendToAlias--jpush--outParameter:{} ", uuid, sendPush.toString());
            } catch (APIConnectionException | APIRequestException e) {
                log.error("uuid:{}, JpushUtil--sendToAlias--error:{} ", uuid, e);
            }
            return result;
        }
     
        /**
         * 定时发送给标识用户
         * @param alias                设备标识
         * @param notificationTitle    通知内容标题
         * @param msgTitle            消息内容标题
         * @param msgContent        消息内容
         * @param extrasparam        扩展字段(传跳转的链接)
         * @param scheduleName        日程名称
         * @param scheduleTime        日程时间(格式:yyyy-MM-dd HH:mm:ss)
         * @param uuid                日志记录标识
         * @return                    false推送失败,true推送成功
         */
        public static Boolean sendToAliasTiming(List alias, String notificationTitle, String msgTitle,
                String msgContent, String extrasparam, String scheduleName, String scheduleTime, String uuid) {
            Boolean result = false;
            try {
                PushPayload pushPayload = buildPushObject(alias, notificationTitle, msgTitle, msgContent, extrasparam);
                log.info("uuid:{}, JpushUtil--sendToAliasTiming--jpush--participation:{} ", uuid,
                        pushPayload.toJSON().toString());
                ScheduleResult createSingleSchedule = jPushClient.createSingleSchedule(scheduleName, scheduleTime,
                        pushPayload);
                if (createSingleSchedule.getResponseCode() == 200) {
                    result = true;
                }
                log.info("uuid:{}, JpushUtil--sendToAliasTiming--jpush--outParameter:{} ", uuid,
                        createSingleSchedule.toString());
            } catch (APIConnectionException | APIRequestException e) {
                log.error("uuid:{}, JpushUtil--sendToAliasTiming--error:{} ", uuid, e);
            }
            return result;
        }
        
        /**
         * 发送给所有安卓用户
         * @param notificationTitle 通知内容标题
         * @param msgTitle            消息内容标题
         * @param msgContent        消息内容
         * @param extrasparam        扩展字段(传跳转的链接)
         * @param uuid                日志记录标识
         * @return                    false推送失败,true推送成功
         */
        public static Boolean sendToAndroid(String notificationTitle, String msgTitle, String msgContent,
                String extrasparam, String uuid) {
            Boolean result = false;
            try {
                PushPayload pushPayload = buildPushObjectByAndroid(notificationTitle, msgTitle, msgContent, extrasparam);
                log.info("uuid:{}, JpushUtil--sendToAndroid--jpush--participation:{} ", uuid,
                        pushPayload.toJSON().toString());
                PushResult sendPush = jPushClient.sendPush(pushPayload);
                if (sendPush.getResponseCode() == 200) {
                    result = true;
                }
                log.info("uuid:{}, JpushUtil--sendToAndroid--jpush--outParameter:{} ", uuid, sendPush.toString());
            } catch (APIConnectionException | APIRequestException e) {
                log.error("uuid:{}, JpushUtil--sendToAndroid--error:{} ", uuid, e);
            }
            return result;
        }
     
        /**
         * 发送给所有IOS用户
         * @param notificationTitle    通知内容标题
         * @param msgTitle            消息内容标题
         * @param msgContent        消息内容
         * @param extrasparam        扩展字段(传跳转的链接)
         * @param uuid                日志记录标识
         * @return                    false推送失败,true推送成功
         */
        public static Boolean sendToIos(String notificationTitle, String msgTitle, String msgContent, String extrasparam,
                String uuid) {
            Boolean result = false;
            try {
                PushPayload pushPayload = buildPushObjectByIos(notificationTitle, msgTitle, msgContent, extrasparam);
                log.info("uuid:{}, JpushUtil--sendToIos--jpush--participation:{} ", uuid, pushPayload.toJSON().toString());
                PushResult sendPush = jPushClient.sendPush(pushPayload);
                if (sendPush.getResponseCode() == 200) {
                    result = true;
                }
                log.info("uuid:{}, JpushUtil--sendToIos--jpush--outParameter:{} ", uuid, sendPush.toString());
            } catch (APIConnectionException | APIRequestException e) {
                log.error("uuid:{}, JpushUtil--sendToIos--error:{} ", uuid, e);
            }
            return result;
        }
     
        /**
         * 发送给所有用户
         * @param notificationTitle    通知内容标题
         * @param msgTitle            消息内容标题
         * @param msgContent        消息内容
         * @param extrasparam        扩展字段(传跳转的链接)
         * @param uuid                日志记录标识
         * @return                    false推送失败,true推送成功
         */
        public static int sendToAll(String notificationTitle, String msgTitle, String msgContent, String extrasparam,
                String uuid) {
            int result = 0;
            try {
                PushPayload pushPayload = buildPushObjectByAll(notificationTitle, msgTitle, msgContent, extrasparam);
                log.info("uuid:{}, JpushUtil--sendToAll--jpush--participation:{} ", uuid, pushPayload.toJSON().toString());
                PushResult sendPush = jPushClient.sendPush(pushPayload);
                if (sendPush.getResponseCode() == 200) {
                    result = 1;
                }
                log.info("uuid:{}, JpushUtil--sendToAll--jpush--outParameter:{} ", uuid, sendPush.toString());
            } catch (APIConnectionException | APIRequestException e) {
                log.error("uuid:{}, JpushUtil--sendToAll--error:{} ", uuid, e);
            }
            return result;
        }
        
        /**
         * 定时发送给所有用户
         * @param notificationTitle    通知内容标题
         * @param msgTitle            消息内容标题
         * @param msgContent        消息内容
         * @param extrasparam        扩展字段(传跳转的链接)
         * @param scheduleName        日程名称
         * @param scheduleTime        日程时间(格式:yyyy-MM-dd HH:mm:ss)
         * @param uuid                日志记录标识
         * @return                    false推送失败,true推送成功
         */
        public static Boolean sendToAllTiming(String notificationTitle, String msgTitle, String msgContent,
                String extrasparam, String scheduleName, String scheduleTime, String uuid) {
            Boolean result = false;
            try {
                PushPayload pushPayload = buildPushObjectByAll(notificationTitle, msgTitle, msgContent, extrasparam);
                log.info("uuid:{}, JpushUtil--sendToAllTiming--jpush--participation:{} ", uuid,
                        pushPayload.toJSON().toString());
                ScheduleResult createSingleSchedule = jPushClient.createSingleSchedule(scheduleName, scheduleTime,
                        pushPayload);
                if (createSingleSchedule.getResponseCode() == 200) {
                    result = true;
                }
                log.info("uuid:{}, JpushUtil--sendToAllTiming--jpush--outParameter:{} ", uuid,
                        createSingleSchedule.toString());
            } catch (APIConnectionException | APIRequestException e) {
                log.error("uuid:{}, JpushUtil--sendToAllTiming--error:{} ", uuid, e);
            }
            return result;
        }
     
        /**
         * 组合发送对象(所有用户)
         * @param notificationTitle    通知内容标题
         * @param msgTitle            消息内容标题
         * @param msgContent        消息内容
         * @param extrasparam        扩展字段(传跳转的链接)
         * @return
         */
        public static PushPayload buildPushObjectByAll(String notificationTitle, String msgTitle, String msgContent,
                String extrasparam) {
            return PushPayload.newBuilder().setPlatform(Platform.android_ios()).setAudience(Audience.all())
                    .setNotification(Notification.newBuilder().setAlert(msgContent)
                            .addPlatformNotification(AndroidNotification.newBuilder().setAlert(msgContent)
                                    .setTitle(notificationTitle).addExtra("url", extrasparam).build())
                            .addPlatformNotification(IosNotification.newBuilder().setAlert(msgContent).incrBadge(1)
                                    .setSound("sound.caf").addExtra("url", extrasparam).build())
                            .build())
                    .setMessage(Message.newBuilder().setMsgContent(msgContent).setTitle(msgTitle)
                            .addExtra("url", extrasparam).build())
                    .setOptions(Options.newBuilder().setApnsProduction(true).setSendno(1).setTimeToLive(86400).build())
                    .build();
        }
     
        /**
         * 组合发送对象(标识用户)
         * @param alias                用户标识
         * @param notificationTitle    通知内容标题
         * @param msgTitle            消息内容标题
         * @param msgContent        消息内容
         * @param extrasparam        扩展字段(传跳转的链接)
         * @return
         */
        private static PushPayload buildPushObject(List alias, String notificationTitle, String msgTitle,
                String msgContent, String extrasparam) {
            return PushPayload.newBuilder().setPlatform(Platform.all()).setAudience(Audience.alias(alias))
                    .setNotification(Notification.newBuilder()
                            .addPlatformNotification(AndroidNotification.newBuilder().setAlert(msgContent)
                                    .setTitle(notificationTitle).addExtra("url", extrasparam).build())
                            .addPlatformNotification(IosNotification.newBuilder().setAlert(msgContent).incrBadge(1)
                                    .setSound("sound.caf").addExtra("url", extrasparam).build())
                            .build())
                    .setMessage(Message.newBuilder().setMsgContent(msgContent).setTitle(msgTitle)
                            .addExtra("url", extrasparam).build())
                    .setOptions(Options.newBuilder().setApnsProduction(true).setSendno(1).setTimeToLive(86400).build())
                    .build();

        }
        
        /**
         * 组合发送对象(Android用户)
         * @param notificationTitle    通知内容标题
         * @param msgTitle            消息内容标题
         * @param msgContent        消息内容
         * @param extrasparam        扩展字段(传跳转的链接)
         * @return
         */
        private static PushPayload buildPushObjectByAndroid(String notificationTitle, String msgTitle, String msgContent,
                String extrasparam) {
            return PushPayload.newBuilder().setPlatform(Platform.android()).setAudience(Audience.all())
                    .setNotification(Notification.newBuilder()
                            .addPlatformNotification(AndroidNotification.newBuilder().setAlert(msgContent)
                                    .setTitle(notificationTitle).addExtra("url", extrasparam).build())
                            .build())
                    .setMessage(Message.newBuilder().setMsgContent(msgContent).setTitle(msgTitle)
                            .addExtra("url", extrasparam).build())
                    .setOptions(Options.newBuilder().setApnsProduction(true).setSendno(1).setTimeToLive(86400).build())
                    .build();
        }
        
        /**
         * 组合发送对象(ios用户)
         * @param notificationTitle    通知内容标题
         * @param msgTitle            消息内容标题
         * @param msgContent        消息内容
         * @param extrasparam        扩展字段(传跳转的链接)
         * @return
         */
        private static PushPayload buildPushObjectByIos(String notificationTitle, String msgTitle, String msgContent,
                String extrasparam) {
            return PushPayload.newBuilder().setPlatform(Platform.ios()).setAudience(Audience.all())
                    .setNotification(Notification.newBuilder()
                            .addPlatformNotification(IosNotification.newBuilder().setAlert(msgContent).incrBadge(1)
                                    .setSound("sound.caf").addExtra("url", extrasparam).build())
                            .build())
                    .setMessage(Message.newBuilder().setMsgContent(msgContent).setTitle(msgTitle)
                            .addExtra("url", extrasparam).build())
                    .setOptions(Options.newBuilder().setApnsProduction(true).setSendno(1).setTimeToLive(86400).build())
                    .build();
        }
    }

注:以上内容仅提供参考和交流,请勿用于商业用途,如有侵权联系本人删除! 

你可能感兴趣的:(Jpush,工具类,java)