1.首先要配置激光推动的:

mastersecet:12345666666

apikey :55555555

这两个值在你注册的时候系统会给你分配

2.导入jar包,我的项目是maven项目,直接引入依赖:

<!-- 极光推送 -->
    <dependency>
        <groupId>cn.jpush.api</groupId>
        <artifactId>jiguang-common</artifactId>
        <version>1.0.3</version>
    </dependency>
    <dependency>
        <groupId>com.google.code.gson</groupId>
        <artifactId>gson</artifactId>
        <version>2.3</version>
    </dependency>
<dependency>
    <groupId>io.netty</groupId>
    <artifactId>netty-all</artifactId>
    <version>4.1.9.Final</version>
</dependency>

	<dependency>
	    <groupId>cn.jpush.api</groupId>
	    <artifactId>jpush-client</artifactId>
	    <version>3.2.17</version>
	</dependency>

 

发送的时候可以发送给指定用户与所有用户等等。

a1:发给指定用户,需要移动端的用户ID与激光 的 tag的绑定,java后台代码 :

/**
	 * 进行推送的关键在于构建一个 PushPayload 对象。以下示例一般的构建对象的用法。
             快捷地构建推送对象:所有平台,所有设备,内容为 ALERT 的通知。
             构建推送对象:所有平台,推送目标是别名为 "alias1",通知内容为 ALERT。
	 * @param employeeId 
	 * @param msgContent 
	 * @param msgTitle 
	 * @param notificationTitle 
	 */
	private static PushPayload buildPushObject_all_all_alert(String notificationTitle, String msgContent, Long employeeId) {
		return PushPayload.newBuilder()  
        .setPlatform(Platform.android_ios())
        .setAudience(Audience.tag(employeeId+""))  
        .setNotification(Notification.newBuilder()  
                .setAlert(notificationTitle)  
                .addPlatformNotification(AndroidNotification.newBuilder()
                		.setAlert(msgContent)
                        .setTitle(notificationTitle).build())  
                .addPlatformNotification(IosNotification.newBuilder()  
                		.setAlert(msgContent)
                        .incrBadge(1)  
                        .addExtra("from", "Jpush").build())  
                .build()).setMessage(Message.newBuilder()
		    		 .setMsgContent(msgContent)
		    		 .setTitle(msgContent)
		    		 .addExtra("from","JPush")
		    		 .build())
		    		 .setOptions(Options.newBuilder()
		    				//此字段的值是用来指定本推送要推送的apns环境,false表示开发,true表示生产;对android和自定义消息无意义
		    		  .setApnsProduction(false)
		    		  //此字段是给开发者自己给推送编号,方便推送者分辨推送记录
		    		  .setSendno(1)
		    		  //此字段的值是用来指定本推送的离线保存时长,如果不传此字段则默认保存一天,最多指定保留十天,单位为秒
		    		  .setTimeToLive(86400)
		    		  .build()
		    		 )  
        .build();  
	}

a2: 发送个安卓与iOS用户:

/**
     * 发送给安卓与iOS用户
     * @param notification_title 通知内容标题
     * @param msg_title 消息内容标题
     * @param msg_content 消息内容
     * @param extrasparam 扩展字段
     * @return 0推送失败,1推送成功
     */
	private static PushPayload buildPushObject_ios_audienceMore_messageWithExtras(String notification_title, String msg_title, String msg_content, String extrasparam) {
		
		return PushPayload.newBuilder()
		                  .setPlatform(Platform.all())
		                  .setAudience(Audience.all())
		                  .setNotification(Notification.newBuilder()
		                		          .setAlert(notification_title)
		                		          .addPlatformNotification(AndroidNotification.newBuilder()
		                		          .setAlert(msg_content)
		                		          .setTitle(notification_title)
		                		        //  .addExtra("androidNotification extras key",extrasparam)
		                		          //此字段为透传字段,不会显示在通知栏。用户可以通过此字段来做一些定制需求,如特定的key传要指定跳转的页面(value)
		                		          .build()
		                		          )
		                		          .addPlatformNotification(IosNotification.newBuilder()
		                		          //传一个IosAlert对象,指定apns title、title、subtitle等	 
		                		          .setAlert(msg_content)
		                		          //直接传alert
                                          //此项是指定此推送的badge自动加1
		                		          .incrBadge(1)
		                		           //此字段的值default表示系统默认声音;传sound.caf表示此推送以项目里面打包的sound.caf声音来提醒,
                                           //如果系统没有此音频则以系统默认声音提醒;此字段如果传空字符串,iOS9及以上的系统是无声音提醒,以下的系统是默认声音
		                		           .setSound("sound.caf")
		                		          // .addExtra("iosNotification extras key","")
		                		            //此字段为透传字段,不会显示在通知栏。用户可以通过此字段来做一些定制需求,如特定的key传要指定跳转的页面(value)
		                		            //此项说明此推送是一个background推送,想了解background看:http://docs.jpush.io/client/ios_tutorials/#ios-7-background-remote-notification
                                           // .setContentAvailable(true)
		                		           .build()
		                		          )
		                		          .build()
		                		  )
		    //Platform指定了哪些平台就会像指定平台中符合推送条件的设备进行推送。 jpush的自定义消息,
                // sdk默认不做任何处理,不会有通知提示。建议看文档http://docs.jpush.io/guideline/faq/的
                // [通知与自定义消息有什么区别?]了解通知和自定义消息的区别
		    .setMessage(Message.newBuilder()
		    		 .setMsgContent(msg_content)
		    		 .setTitle(msg_title)
		    		 .addExtra("from","JPush")
		    		 .build())
		    		 .setOptions(Options.newBuilder()
		    				//此字段的值是用来指定本推送要推送的apns环境,false表示开发,true表示生产;对android和自定义消息无意义
		    		  .setApnsProduction(false)
		    		  //此字段是给开发者自己给推送编号,方便推送者分辨推送记录
		    		  .setSendno(1)
		    		  //此字段的值是用来指定本推送的离线保存时长,如果不传此字段则默认保存一天,最多指定保留十天,单位为秒
		    		  .setTimeToLive(86400)
		    		  .build()
		    		 )
		    		 .build();
    }