向IPhone终端发送PUSH消息
程序员文章站
2022-06-01 21:09:51
...
刚刚接了一个任务,向IPhone终端发送PUSH消息,乍一听起来,觉得好深奥,回到工位上网查了一下,其实很简单,主要把流程搞清楚了,把容易出错误的地方弄明白,代码就非常的简单了,呵呵
下面先说一下流程,首先,要得到发送消息的IPhone的令牌号,每个苹果手机都有唯一的令牌,就和咱们手机的imei差不多。其次,得到手机令牌后才能和苹果服务器交互,和苹果服务器交互的时候带上证书、令牌、和消息内容,发请求就完事了。
流程就是这么简单,但要注意手机令牌号一定要正确,还有证书不能出问题,二者有一方出问题,push都不能成功。
实现业务的java代码:
public static boolean logic(String deviceToken, String message)
throws Exception {
boolean result = false;
if (deviceToken == null || "".equals(deviceToken)) {
logger.info("IPhone终端令牌号为空值,PUSH失败!");
System.out.println("IPhone终端令牌号为空值,PUSH失败!");
return false;
}
PushNotificationManager pushManager = null;
try {
PayLoad payLoad = new PayLoad();
payLoad.addAlert(message);// 消息内容
payLoad.addBadge(1);// IPhone上显示的信息条数,默认为1
payLoad.addSound("default");// 铃音
pushManager = PushNotificationManager.getInstance();
pushManager.addDevice("iPhone", "******");//*代表IPhone的令牌号
String certificatePassword = "******";
String host = "gateway.sandbox.push.apple.com";
String port = "2195";
String certificationPath = "c:/push_p.p12";
pushManager.initializeConnection(host, Integer.parseInt(port),
certificationPath, certificatePassword,
SSLConnectionHelper.KEYSTORE_TYPE_PKCS12);
// 发送PUSH消息
Device client = pushManager.getDevice("iPhone");
pushManager.sendNotification(client, payLoad);
result = true;
} catch (Exception e) {
e.printStackTrace();
} finally {
if (pushManager != null) {
pushManager.stopConnection();
pushManager.removeDevice("iPhone");
}
}
return result;
}
上面的代码只能实现push简单的字符串类型的message,至于可否push其他数据类型的message,本人正在研究中。。。
感觉应该是可以的。。。
实现该业务需要依赖的第三方jar包:
bcprov-jdk16-145-1.jar
javapns-jdk16-163.jar
commons-lang-2.5.jar
commons-io-1.4.jar